:root {
  --ink: #0a0e14;
  --ink2: #111820;
  --surface: #141c25;
  --card: #1a2333;
  --border: rgba(255,255,255,0.07);
  --gold: #f5c842;
  --gold2: #e8a820;
  --emerald: #10c98a;
  --sky: #38bdf8;
  --muted: #6b7f94;
  --text: #dde8f0;
  --light: #f0f6fc;
  --red: #f04438;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.1; color: var(--light); }
a { color: inherit; text-decoration: none; }

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* NAV */
.aerp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(10,14,20,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.aerp-nav.scrolled { background: rgba(10,14,20,0.95); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px;
  color: var(--light);
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0e14 !important;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 700; font-size: 14px !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: 0.88; }
.nav-cta-login {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text) !important;
  margin-left: 8px;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 700; font-size: 14px !important;
  transition: opacity .2s !important;
}

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,200,66,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(16,201,138,0.07) 0%, transparent 60%),
    var(--ink);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-content { max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.25);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800; line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: #8899aa; max-width: 580px;
  margin-bottom: 42px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #0a0e14; font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 10px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 28px rgba(245,200,66,0.3);
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(245,200,66,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text); font-weight: 500; font-size: 15px;
  padding: 14px 28px; border-radius: 10px;
  transition: background .2s, border-color .2s;
  cursor: pointer; text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num { font-weight: 800; font-size: 36px; color: var(--light); }
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hero-visual {
  position: absolute; right: 3%; top: 46%; transform: translateY(-50%);
  width: 54vw; max-width: 780px;
  display: none;
}
@media(min-width:1100px) { .hero-visual { display: block; } }
@media(min-width:1400px) { .hero-visual { right: 5%; width: 50vw; } }

/* DASHBOARD MOCKUP */
.dashboard-mock {
  background: var(--ink2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.mock-topbar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #febc2e; }
.mock-dot.g { background: #28c840; }
.mock-title { font-size: 12px; color: var(--muted); margin-left: 8px; font-weight: 600; }
.mock-body { display: flex; height: 280px; }
.mock-sidebar { width: 52px; background: rgba(0,0,0,0.2); padding: 12px 10px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.mock-sb-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.mock-sb-icon.active { background: rgba(245,200,66,0.2); }
.mock-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.mock-row { display: flex; gap: 10px; }
.mock-kpi {
  flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px;
}
.mock-kpi-val { font-weight: 700; font-size: 18px; color: var(--light); }
.mock-kpi-lbl { font-size: 9px; color: var(--muted); margin-top: 2px; }
.mock-kpi-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.mock-kpi-fill { height: 100%; border-radius: 2px; }
.mock-chart { flex: 2; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 10px; }
.mock-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; margin-top: 8px; }
.mock-bar { flex: 1; border-radius: 3px 3px 0 0; opacity: 0.8; }
.mock-table { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.mock-tr { display: flex; gap: 8px; padding: 7px 10px; border-bottom: 1px solid var(--border); font-size: 9px; }
.mock-tr:last-child { border: none; }
.mock-th { color: var(--muted); font-size: 8px; font-weight: 600; text-transform: uppercase; }
.mock-td { color: var(--text); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-badge-g { background: rgba(16,201,138,0.15); color: #10c98a; padding: 1px 6px; border-radius: 100px; font-size: 8px; }
.mock-badge-y { background: rgba(245,200,66,0.15); color: var(--gold); padding: 1px 6px; border-radius: 100px; font-size: 8px; }

/* SECTIONS */
section { padding: 100px 5vw; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--emerald); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--emerald); }
.section-title { font-size: clamp(30px, 4vw, 52px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 64px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }
.center .section-label { justify-content: center; }

/* MODULES GRID */
.modules-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.module-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: default;
  position: relative; overflow: hidden;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color, var(--emerald)), transparent);
  opacity: 0; transition: opacity .3s;
}
.module-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.14); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.module-card:hover::before { opacity: 1; }
.module-card.coming-soon { opacity: 0.6; }
.module-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.module-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--light); }
.module-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.module-features { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tag {
  font-size: 11px; font-weight: 500;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 10px; color: var(--muted);
}
.coming-soon-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(107,127,148,0.18); color: #6b7f94;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 20px;
  border: 1px solid rgba(107,127,148,0.25);
}

/* FEATURES BENTO */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  transition: transform .2s, border-color .2s;
}
.bento-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.b-span-7 { grid-column: span 7; }
.b-span-5 { grid-column: span 5; }
.b-span-4 { grid-column: span 4; }
.b-span-8 { grid-column: span 8; }
.b-span-6 { grid-column: span 6; }
.b-span-12 { grid-column: span 12; }
@media(max-width:900px) { .bento-card { grid-column: span 12 !important; } }
.bento-icon { font-size: 28px; margin-bottom: 16px; }
.bento-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.highlight-text { color: var(--gold); font-weight: 600; }

/* ROLE CARDS */
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.role-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px;
  border-left: 3px solid var(--role-color, var(--emerald));
}
.role-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.role-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* REPORTS SECTION */
.reports-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.report-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: background .2s;
}
.report-item:hover { background: rgba(255,255,255,0.06); }
.report-icon { font-size: 16px; flex-shrink: 0; }

/* CTA SECTION */
.cta-section {
  text-align: center; padding: 120px 5vw;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,200,66,0.06) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 800; margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: var(--muted); margin-bottom: 42px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-cards { display: flex; gap: 20px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px 32px;
  display: flex; align-items: center; gap: 16px;
  transition: transform .2s, border-color .2s;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); }
.contact-card-icon { font-size: 24px; }
.contact-card-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card-val { font-size: 15px; font-weight: 600; color: var(--light); margin-top: 2px; }

/* FOOTER */
footer {
  background: var(--ink2); border-top: 1px solid var(--border);
  padding: 48px 5vw 32px;
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--light); }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }

/* SCROLL ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* STATS ROW */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; }
.stat-box {
  padding: 48px 36px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.stat-box:last-child { border-right: none; }
.stat-big { font-weight: 800; font-size: 48px; color: var(--light); line-height: 1; }
.stat-big span { color: var(--gold); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* MOBILE HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(10,14,20,0.98); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border); z-index: 99;
  padding: 20px 5vw 28px; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; font-weight: 500; color: var(--muted);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:last-child { border: none; margin-top: 8px; }
.mobile-menu a:hover { color: var(--light); }
.mobile-menu .nav-cta {
  text-align: center; border-radius: 10px;
  padding: 14px 20px; color: #0a0e14 !important;
}
.mobile-menu .nav-cta-login {
  text-align: center; border-radius: 10px;
  padding: 14px 20px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero { padding: 110px 5vw 70px; }
  .hero-content { max-width: 100%; }
  .hub-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .exclusive-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .modules-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media(max-width:768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  section { padding: 64px 5vw; }
  .hero { padding: 100px 5vw 56px; min-height: auto; overflow: hidden; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); letter-spacing: -0.02em; }
  .hero-sub { font-size: clamp(14px, 4vw, 16px); margin-bottom: 32px; max-width: 100%; }
  .hero-stats { gap: 20px; margin-top: 40px; padding-top: 28px; }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-label { font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; flex-wrap: wrap; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; max-width: 100%; min-height: 44px; padding: 14px 22px; }

  /* NAV */
  .aerp-nav { padding: 0 4vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .mobile-menu a { min-height: 44px; display: flex; align-items: center; }

  /* CHICK HERO VISUAL — scale proportionally, never overflow */
  .hero-visual {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    right: auto; top: auto; transform: none;
    margin: 40px auto 0;
  }
  .dashboard-mock { max-width: 100%; }
  .chicks-runway { max-width: 100%; overflow: hidden; }
  .chick-svg { width: clamp(36px, 9vw, 52px); height: auto; }

  .bento { grid-template-columns: 1fr; }
  .bento-card { grid-column: span 1 !important; padding: 22px; }
  .bento-card h3 { font-size: 17px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .module-card { padding: 22px; }
  .roles-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-box { border-right: none; padding: 32px 20px; }
  .stat-big { font-size: 36px; }
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .section-header { margin-bottom: 40px; }
  .section-sub { font-size: 15px; max-width: 100%; }
  .cta-section { padding: 72px 5vw; }
  .cta-section h2 { font-size: clamp(26px, 7vw, 42px); }
  .cta-section p { font-size: 15px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { justify-content: center; width: 100%; min-height: 44px; }
  .contact-cards { flex-direction: column; align-items: stretch; }
  .contact-card { padding: 18px 20px; min-height: 44px; }
  .contact-card-val { font-size: 13px; word-break: break-all; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-col { min-width: 0; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reports-list { grid-template-columns: repeat(2, 1fr); }
  .bento-card .bento-flex { flex-direction: column !important; }
  .bento-flex-list { width: 100%; }

  /* HUB / EXCLUSIVE / MAIL GRIDS -> 2 columns on tablet */
  .hub-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hub-hero-card { grid-column: span 2; }
  .exclusive-grid { grid-template-columns: 1fr; }
  .excl-card-wide { grid-column: span 1; }
  .excl-card { padding: 24px 20px; }
  .mail-grid { grid-template-columns: 1fr; }
  .wf-banner { padding: 24px 22px; flex-direction: column; text-align: center; }
  .wf-chips { justify-content: center; }

  /* COMPARISON TABLE */
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }

  /* CARD-LEVEL: convert any fixed widths to fluid */
  .module-card, .bento-card, .role-card, .hub-card, .excl-card, .contact-card, .report-item {
    width: 100%; max-width: 100%;
  }
}

@media(max-width:480px) {
  .hero { padding: 90px 4vw 48px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(28px, 9vw, 38px); margin-bottom: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-stats { gap: 16px; margin-top: 28px; padding-top: 20px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 11px; }

  /* CHICK HERO VISUAL — shrink further, no horizontal scroll/overlap */
  .hero-visual { margin-top: 28px; }
  .chicks-runway { top: -36px; height: 40px; }
  .chick-svg { width: clamp(28px, 8vw, 40px); }
  .mock-body { height: auto; flex-direction: column; }
  .mock-sidebar { display: none; }
  .mock-row { flex-wrap: wrap; }
  .mock-kpi { min-width: 45%; }
  .mock-chart-bars { height: 36px; }

  .nav-logo { font-size: 16px; gap: 8px; }
  .nav-logo-icon { width: 30px; height: 30px; font-size: 15px; }
  .aerp-nav { height: 60px; padding: 0 4vw; }
  .mobile-menu { top: 60px; }

  section { padding: 48px 4vw; }
  .section-title { font-size: clamp(22px, 8vw, 30px); }
  .section-sub { font-size: 14px; }

  .modules-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .reports-list { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-hero-card { grid-column: span 1; }
  .bento-icon, .module-icon { font-size: 22px; }
  .module-card { padding: 18px; }
  .excl-card { padding: 20px 16px; }
  .excl-badge { font-size: 9px; padding: 4px 10px; }

  .comparison-title { font-size: 17px; }
  .comparison-table { font-size: 12px; min-width: 520px; }
  .comparison-table th, .comparison-table td { padding: 8px 8px; }

  .footer-brand-row { gap: 8px; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col a { padding: 6px 0; min-height: 44px; display: flex; align-items: center; margin-bottom: 0; }

  .btn-primary, .btn-secondary, .nav-cta, .nav-cta-login { min-height: 44px; }
  .contact-card { flex-wrap: wrap; }
}

/* GLOW ACCENTS */
.glow-gold { text-shadow: 0 0 40px rgba(245,200,66,0.4); }

/* SECTION ALT BG */
.bg-alt { background: var(--surface); }

/* GRADIENT TEXT */
.grad-text {
  background: linear-gradient(135deg, var(--gold) 0%, #ff9b42 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-green {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--sky) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* DASHBOARD HUB */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px; margin-top: 48px;
}
.hub-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.hub-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.hub-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--hc, var(--emerald)); opacity: 0.5;
}
.hub-card-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hub-card h4 { font-size: 14px; font-weight: 700; color: var(--light); margin-bottom: 4px; }
.hub-card p { font-size: 12px; color: var(--muted); line-height: 1.55; }
.hub-hero-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(245,200,66,0.08), rgba(251,146,60,0.05));
  border-color: rgba(245,200,66,0.15);
}
@media(max-width:768px) { .hub-hero-card { grid-column: span 1; } }
.hub-count-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  margin-bottom: 20px;
}

/* EXCLUSIVE FEATURES */
.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.excl-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.excl-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.excl-glow {
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  opacity: 0.07; pointer-events: none;
}
.excl-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 6px;
  margin-bottom: 20px; border: 1px solid currentColor;
}
.badge-fire { color: #f97316; background: rgba(249,115,22,0.1); }
.badge-ai   { color: #a78bfa; background: rgba(167,139,250,0.1); }
.badge-lock { color: var(--gold); background: rgba(245,200,66,0.1); }
.badge-mail { color: var(--sky); background: rgba(56,189,248,0.1); }
.excl-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--light); }
.excl-card > p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.excl-points { display: flex; flex-direction: column; gap: 10px; }
.excl-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.excl-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 1px;
}
.excl-card-wide { grid-column: span 2; }
@media(max-width:900px) { .excl-card-wide { grid-column: span 1; } }

/* WORLD-FIRST BANNER */
.wf-banner {
  background: linear-gradient(135deg, rgba(167,139,250,0.08), rgba(56,189,248,0.06));
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 18px; padding: 32px 36px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.wf-icon { font-size: 40px; flex-shrink: 0; }
.wf-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; color: var(--light); }
.wf-text p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.wf-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.wf-chip {
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  background: rgba(167,139,250,0.12); color: #a78bfa;
  border: 1px solid rgba(167,139,250,0.2);
}

/* CHICK ANIMATION */
.chicks-runway {
  position: absolute;
  top: -54px; left: 0; right: 0;
  height: 56px;
  pointer-events: all;
  cursor: pointer;
  z-index: 10;
  overflow: visible;
}
.chick-wrap {
  position: absolute;
  top: 0;
  will-change: transform, left;
}
.chick-svg {
  width: 52px; height: 52px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(245,200,66,0.45));
  will-change: transform;
}

/* SECURITY STRIP */
.security-strip {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 32px 5vw;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.sec-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.sec-item span:first-child { color: var(--emerald); font-size: 16px; }

/* COMPARISON TABLE */
.comparison-wrapper { margin-top: 64px; overflow-x: auto; }
.comparison-title { text-align: center; font-size: 20px; font-weight: 800; color: var(--light); margin-bottom: 28px; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; font-size: 14px; }
.comparison-table th {
  text-align: left; padding: 14px 16px; color: var(--muted);
  font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 2px solid var(--border);
}
.comparison-table th.center-col { text-align: center; }
.comparison-table th.highlight-col {
  text-align: center; background: rgba(245,200,66,0.08);
  color: var(--gold); font-weight: 700; border-radius: 8px 8px 0 0;
}
.comparison-table td { padding: 12px 16px; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.comparison-table td.center-col { text-align: center; font-weight: 700; }
.comparison-table td.highlight-col { text-align: center; font-weight: 700; color: var(--emerald); background: rgba(245,200,66,0.04); }
.text-red { color: #f04438; }
.text-green { color: var(--emerald); }
.text-muted { color: var(--muted); }

/* MAIL GRID */
.mail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px; margin-top: 8px; }

/* BENTO FLEX (offline section) */
.bento-flex { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bento-flex-content { flex: 1; min-width: 240px; }
.bento-flex-list { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.bento-flex-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.bento-flex-item .check { color: var(--emerald); }

/* FOOTER BRAND ROW */
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-icon { width: 32px; height: 32px; font-size: 16px; }
