/* =========================================================
   FundedPath — Premium Trading Mentorluk
   Design System  •  Dark / Fintech  •  Mobile-first
   ========================================================= */

:root {
  /* Surfaces — Light */
  --bg: #FFFFFF;
  --bg-2: #F6F7F9;
  --surface: #FFFFFF;
  --surface-2: #F4F5F7;
  --surface-3: #ECEEF1;
  --border: rgba(17, 17, 17, 0.08);
  --border-strong: rgba(17, 17, 17, 0.14);

  /* Text */
  --text: #18181B;
  --muted: #6B7280;
  --muted-2: #9CA3AF;

  /* Brand — Monochrome (black) */
  --primary: #111111;
  --primary-2: #000000;
  --primary-soft: rgba(17, 17, 17, 0.05);
  --gold: #111111;
  --gold-soft: rgba(17, 17, 17, 0.05);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #2A2A2E 0%, #111111 100%);
  --grad-gold: linear-gradient(135deg, #2A2A2E 0%, #111111 100%);
  --grad-hero: radial-gradient(1200px 600px at 70% -10%, rgba(17,17,17,0.05), transparent 60%),
               radial-gradient(900px 500px at 10% 10%, rgba(17,17,17,0.03), transparent 55%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 12px 30px rgba(17, 17, 17, 0.08);
  --shadow-glow: 0 10px 30px rgba(17, 17, 17, 0.12);

  /* Layout */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --maxw: 1180px;
  --nav-h: 72px;

  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--primary-soft); border: 1px solid var(--border);
  margin-bottom: 18px;
}
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2.section-title { font-size: clamp(28px, 4.2vw, 44px); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: clamp(15px, 2.2vw, 18px); }

.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap; border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: #111111; color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); background: #000; box-shadow: 0 12px 30px rgba(17,17,17,0.18); }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--primary); background: var(--surface-2); }
.btn-telegram { background: #111111; color: #fff; }
.btn-telegram:hover { transform: translateY(-2px); background: #000; box-shadow: 0 12px 30px rgba(17,17,17,0.18); }
.btn-tiktok { background: #fff; color: #111; border: 1px solid var(--border-strong); }
.btn-tiktok:hover { transform: translateY(-2px); border-color: #111; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; background: #111111;
  display: grid; place-items: center; color: #fff; font-weight: 800; box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; transition: .25s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 80px; background: var(--grad-hero); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.6vw, 60px); margin-bottom: 22px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
  padding: 7px 14px 7px 8px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border); font-size: 13px; color: var(--muted);
}
.hero-tag b { color: var(--primary); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.hero p.lead { font-size: clamp(16px, 2.4vw, 19px); color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--font-head); font-size: 24px; }
.hero-trust .ht span { font-size: 13px; color: var(--muted); }

/* Hero visual — premium istatistik kartları */
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hstat {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-md);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hstat:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.hstat .hstat-glow { position: absolute; inset: 0; background: radial-gradient(220px 120px at 80% 0%, rgba(17,17,17,0.05), transparent 65%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.hstat:hover .hstat-glow { opacity: 1; }
.hstat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4.4vw, 38px); line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hstat .lbl { font-size: 14px; color: var(--muted); font-weight: 500; }
.hstat:nth-child(2), .hstat:nth-child(3) { animation: floaty 6s ease-in-out infinite; }
.hstat:nth-child(3) { animation-delay: 1.4s; }
@media (prefers-reduced-motion: reduce) { .hstat { animation: none !important; } }

.hero-visual { position: relative; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Steps (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.step {
  display: flex; gap: 18px; padding: 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); transition: transform .25s, border-color .25s, background .25s;
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  background: #111111; color: #fff; border: 1px solid #111111;
}
.step h4 { font-size: 17px; margin-bottom: 5px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- Curriculum cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.curr-card {
  padding: 26px 22px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); transition: transform .25s, border-color .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.curr-card::after { content: ''; position: absolute; inset: 0; opacity: 0; background: radial-gradient(300px 140px at 50% 0%, var(--primary-soft), transparent 70%); transition: opacity .3s; }
.curr-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.curr-card:hover::after { opacity: 1; }
.curr-num { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 18px; position: relative; display: inline-flex; align-items: center; }
.curr-num::before { content: ''; width: 22px; height: 1px; background: var(--text); margin-right: 10px; }
.curr-card h4 { font-size: 16.5px; margin-bottom: 7px; position: relative; }
.curr-card p { font-size: 14px; color: var(--muted); position: relative; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 0; }
.stat {
  text-align: center; padding: 30px 18px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border);
}
.stat .num { font-family: var(--font-head); font-size: clamp(30px, 4vw, 44px); font-weight: 800; line-height: 1; margin-bottom: 8px; }
.stat .lbl { font-size: 14px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 44px; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-md);
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 280px at 90% -20%, rgba(17,17,17,0.05), transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; position: relative; }
.cta-band p { color: var(--muted); position: relative; max-width: 460px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ---------- Pricing ---------- */
.pricing-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: stretch; }
.price-card {
  border-radius: var(--radius-lg); padding: 38px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-strong);
}
.price-card.feature { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.price-card.feature::before { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 250px at 80% -10%, rgba(17,17,17,0.04), transparent 60%); pointer-events: none; }
.price-top { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 6px; position: relative; }
.price-top .amt { font-family: var(--font-head); font-size: 56px; font-weight: 800; letter-spacing: -0.03em; }
.price-top .per { color: var(--muted); font-size: 15px; }
.price-desc { color: var(--muted); margin-bottom: 26px; position: relative; }
.price-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; position: relative; }
.price-list li { display: flex; gap: 12px; font-size: 15px; align-items: flex-start; }
.price-list .check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin-top: 1px; }
.price-list .check svg { width: 13px; height: 13px; }
.fee-card { padding: 30px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 20px; }
.fee-row { display: flex; gap: 16px; align-items: flex-start; }
.fee-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); }
.fee-row h4 { font-size: 16px; margin-bottom: 4px; }
.fee-row p { font-size: 14px; color: var(--muted); }
.fee-note { margin-top: auto; padding: 16px; border-radius: 12px; background: var(--primary-soft); border: 1px solid var(--border); font-size: 14px; color: var(--text); display: flex; gap: 10px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--border-strong); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--text); }
.faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--surface-2); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--primary-soft); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- Form fields (admin) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 15px; transition: border-color .2s, background .2s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: var(--surface); }
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238B93A7' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-msg { margin-top: 8px; padding: 14px 16px; border-radius: 12px; font-size: 14px; display: none; }
.form-msg.ok { display: block; background: var(--primary-soft); color: var(--text); border: 1px solid var(--border-strong); }
.form-msg.err { display: block; background: rgba(255,90,90,0.1); color: #ff8585; border: 1px solid rgba(255,90,90,0.25); }
.form-fine { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer .logo { margin-bottom: 14px; }
.footer-about p { color: var(--muted); font-size: 14.5px; max-width: 300px; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: .2s; }
.social-btn:hover { color: var(--text); border-color: var(--border-strong); transform: translateY(-2px); }
.footer-col h5 { font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text); font-size: 14.5px; padding: 6px 0; opacity: .82; transition: .2s; }
.footer-col a:hover { opacity: 1; color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--muted-2); font-size: 13px; }
.disclaimer { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; font-size: 12.5px; color: var(--muted); margin-top: 26px; line-height: 1.6; }

/* ---------- Floating Telegram ---------- */
.float-tg {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px;
  background: #111111; color: #fff; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  box-shadow: 0 12px 30px rgba(17,17,17,0.25); transition: transform .25s; font-family: var(--font-head);
}
.float-tg:hover { transform: translateY(-3px) scale(1.02); }
.float-tg svg { width: 22px; height: 22px; }
.to-top { position: fixed; bottom: 22px; left: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--text); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .25s; }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); border-color: var(--primary); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 99; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); padding: 28px 24px; display: none; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; transition: opacity .25s, transform .25s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: none; }
.mobile-menu a { padding: 16px 8px; font-size: 18px; font-family: var(--font-head); font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 34px; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 28px; flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .float-tg span { display: none; }
  .float-tg { padding: 16px; }
  .price-card, .fee-card { padding: 26px; }
  .form-card { padding: 22px; }
}

/* ---------- Admin panel ---------- */
.admin-body { background: var(--bg); min-height: 100vh; }
.admin-top { border-bottom: 1px solid var(--border); padding: 16px 0; position: sticky; top: 0; background: rgba(255,255,255,0.88); backdrop-filter: blur(12px); z-index: 10; }
.admin-top .container { display: flex; align-items: center; justify-content: space-between; }
.admin-tabs { display: flex; gap: 6px; margin: 28px 0; flex-wrap: wrap; }
.admin-tab { padding: 10px 18px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-size: 14px; font-weight: 600; transition: .2s; }
.admin-tab.active { background: #111111; color: #fff; border-color: #111111; }
.admin-panel { display: none; } .admin-panel.active { display: block; }
.admin-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; }
.admin-card h3 { font-size: 17px; margin-bottom: 16px; }
.admin-list-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; background: var(--bg-2); }
.admin-list-item .meta { font-size: 14px; }
.admin-list-item .meta small { color: var(--muted); }
.icon-btn { width: 36px; height: 36px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); display: grid; place-items: center; transition: .2s; }
.icon-btn:hover { color: #ff8585; border-color: rgba(255,90,90,0.3); }
.login-box { max-width: 380px; margin: 12vh auto; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 36px; }
.app-row { display: grid; grid-template-columns: 1.5fr 0.6fr 1fr 1fr 1.2fr; gap: 10px; padding: 14px; border-bottom: 1px solid var(--border); font-size: 14px; align-items: center; }
.app-row.head { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.app-table-wrap { overflow-x: auto; }
.badge-soft { font-size: 12px; padding: 3px 9px; border-radius: var(--radius-pill); background: var(--surface-2); border: 1px solid var(--border); }
@media (max-width: 720px) { .app-row { grid-template-columns: 1fr; gap: 4px; } .app-row.head { display: none; } .app-row { padding: 16px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; } }
