
/* ===== Aspens Capital x FCTI — UI inspired by GetSmarter (clean, editorial) ===== */
:root {
  /* Primary Brand Colors */
  --color-primary: #0C0B29;
  --color-primary-light: #26203F;
  --color-primary-dark: #07071D;

  /* Accent Blues */
  --color-accent-blue: #0D6CB5;
  --color-accent-blue-light: #29A3FF;
  --color-accent-blue-glow: #008CFF;

  /* Accent Purple */
  --color-accent-purple: #25077C;
  --color-accent-purple-light: #4B1DFF;
  --color-accent-purple-glow: #7B2DFF;

  /* Text */
  --color-text: #FFFFFF;
  --color-text-muted: #C5CAD8;
  --color-text-soft: #9EA6BC;

  /* Backgrounds */
  --color-bg: #090A24;
  --color-bg-secondary: #111330;
  --color-bg-card: rgba(255,255,255,0.04);

  /* Borders */
  --color-border: rgba(255,255,255,0.08);
  --color-border-strong: rgba(255,255,255,0.15);

  /* Success */
  --color-success: #22C55E;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.25);
  --shadow-glow-blue: 0 0 40px rgba(13,108,181,0.45);
  --shadow-glow-purple: 0 0 40px rgba(75,29,255,0.45);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Layout */
  --container-width: 1280px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.container-wide{
  max-width:1400px;
  margin:0 auto;
  padding:0 24px;
}

/* Aspens iHUB Logo */
.logo{
  width:220px;
  height:70px;

  background-image:url("images/aspens-capital_.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;

  display:block;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:.6rem;

  background:var(--accent);
  color:var(--accent-ink);

  padding:.9rem 1.1rem;

  border-radius:10px;
  font-weight:600;

  border:0;
  cursor:pointer;

  box-shadow:var(--shadow);

  transition:
    transform .05s ease,
    filter .2s ease;
}.btn.secondary{background:#111;color:#fff}
.btn.ghost{background:transparent;color:var(--ink);border:1px solid #e5e7eb}
.btn:hover{filter:brightness(.95)}
.btn:active{transform:translateY(1px)}
.badge{display:inline-block;padding:.35rem .6rem;border-radius:999px;font-size:.8rem;background:#fee2e2;color:#991b1b}
/* Header */
.topbar{background:var(--surface);border-bottom:1px solid #e5e7eb}
.topbar .inner{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0;font-size:.9rem}
.header{position:sticky;top:0;background:var(--bg);z-index:50;border-bottom:1px solid #e5e7eb}
.nav{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.brand{display:flex;align-items:center;gap:.75rem}
.logo{width:38px;height:38px;border-radius:8px;background:linear-gradient(135deg,var(--brand),#0ea5e9);display:grid;place-items:center;color:#fff;font-weight:800}
.brand h1{font-size:1.1rem;margin:0}
.menu{display:flex;gap:1rem;align-items:center}
.menu a{padding:.6rem .75rem;border-radius:8px;color:#111;font-weight:600}
.menu a:hover{background:#f3f4f6}
.searchbar{position:relative;flex:1;max-width:560px;margin:0 1rem}
.searchbar input{
  width:100%;padding:0.9rem 3rem 0.9rem 1rem;border-radius:12px;border:1px solid #e5e7eb;background:var(--surface);outline:none;
}
.searchbar svg{position:absolute;right:12px;top:50%;transform:translateY(-50%);opacity:.6}
.mobile-toggle{display:none}
/* Hero */
.hero{padding:64px 0;background:linear-gradient(180deg,#fff, #f9fafb)}
.hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:48px;align-items:center}
.kicker{font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:#4b5563;font-size:.8rem}
.hero h2{font-size:clamp(1.8rem,4vw,3rem);line-height:1.2;margin:.5rem 0 1rem}
.hero p{font-size:1.1rem;color:#374151}
.hero .highlights{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.hero-card{
  background:var(--card);border:1px solid #e5e7eb;border-radius:16px;padding:18px;box-shadow:var(--shadow);
}
/* Sections */
.section{padding:56px 0;border-top:1px solid #f1f5f9}
.section h3{font-size:1.6rem;margin:0 0 12px}
.lead{color:#374151;max-width:70ch}
.grid{display:grid;gap:20px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-4{grid-template-columns:repeat(4,1fr)}
.card{background:var(--card);border:1px solid #e5e7eb;border-radius:16px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column}
.card .body{padding:18px}
.card h4{margin:0 0 8px;font-size:1.05rem}
.meta{color:var(--muted);font-size:.9rem}
.pills{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:.5rem}
.pill{background:#eef2ff;color:#3730a3;padding:.35rem .6rem;border-radius:999px;font-size:.78rem}
/* Testimonial */
.quote{font-size:1.3rem;line-height:1.5}
.q-card{display:grid;grid-template-columns:72px 1fr;gap:14px;align-items:center}
.avatar{width:72px;height:72px;border-radius:999px;background:#e5e7eb}
/* Footer */
.footer{background:#0b1220;color:#e5e7eb;padding:48px 0;margin-top:40px}
.footer a{color:#cbd5e1}
.footer .cols{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:24px}
.copyright{border-top:1px solid rgba(148,163,184,.2);margin-top:24px;padding-top:12px;color:#94a3b8;font-size:.9rem}
/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .menu{display:none}
  .mobile-toggle{display:inline-flex;align-items:center;gap:.4rem;border:1px solid #e5e7eb;padding:.5rem .75rem;border-radius:8px}
  .searchbar{max-width:100%;margin:.75rem 0 0}
  .footer .cols{grid-template-columns:1fr 1fr}
}
@media (max-width: 600px){
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-4{grid-template-columns:1fr 1fr}
}
