/* arbitragebeast.com - main.css */

:root{
  --bg:#050608;
  --bg2:#07080c;
  --panel:#0b0d12;
  --panel2:#0d1018;
  --text:#e9edf6;
  --muted:#b7c0d3;
  --faint:#7f8aa3;

  --gold:#d7b86a;
  --gold2:#f0d18a;

  --hot:#ff5f2e;
  --strong:#3be7a6;
  --titan:#f7c758;

  --line:rgba(255,255,255,.10);
  --line2:rgba(215,184,106,.18);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 30px 120px rgba(0,0,0,.70);

  --r:18px;
  --r2:26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 800px at 14% 12%, rgba(215,184,106,.12), transparent 60%),
    radial-gradient(900px 600px at 88% 22%, rgba(255,95,46,.10), transparent 62%),
    radial-gradient(1000px 700px at 50% 100%, rgba(59,231,166,.06), transparent 65%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  font-family: "Unbounded", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

.noise{
  pointer-events:none;
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.45;
}

.glow{
  pointer-events:none;
  position:fixed;
  inset:-120px;
  background:
    radial-gradient(700px 420px at 20% 15%, rgba(240,209,138,.10), transparent 60%),
    radial-gradient(760px 460px at 86% 12%, rgba(215,184,106,.10), transparent 65%),
    radial-gradient(860px 520px at 52% 98%, rgba(255,95,46,.08), transparent 70%);
  filter: blur(2px);
  opacity:.9;
}

.wrap{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

a{color:inherit; text-decoration:none}
.mono{font-family:"JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,6,8,.60);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:260px;
}
.sigil{
  width:42px;
  height:42px;
  border-radius:14px;
  background:
    radial-gradient(10px 10px at 30% 30%, rgba(240,209,138,.65), transparent 60%),
    radial-gradient(12px 12px at 70% 70%, rgba(215,184,106,.55), transparent 65%),
    linear-gradient(180deg, rgba(215,184,106,.22), rgba(255,255,255,.02));
  border:1px solid rgba(215,184,106,.30);
  box-shadow: 0 10px 30px rgba(215,184,106,.10), inset 0 0 0 1px rgba(255,255,255,.04);
  position:relative;
}
.sigil:after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:12px;
  border:1px dashed rgba(215,184,106,.35);
  opacity:.8;
}
.sigil-mini{width:34px;height:34px;border-radius:12px}
.brand-title{font-weight:800; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted); margin-top:2px; opacity:.9}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:center;
}
.nav a{
  font-size:12px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  transition: .18s ease;
}
.nav a:hover{
  color:var(--text);
  border-color:rgba(215,184,106,.20);
  background:rgba(215,184,106,.06);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  font-size:13px;
  border:1px solid rgba(255,255,255,.12);
  transition:.18s ease;
  box-shadow: 0 10px 34px rgba(0,0,0,.35);
}
.btn-primary{
  background:linear-gradient(180deg, rgba(240,209,138,.22), rgba(215,184,106,.10));
  border-color:rgba(215,184,106,.38);
  box-shadow: 0 18px 60px rgba(215,184,106,.12), 0 24px 80px rgba(0,0,0,.60);
}
.btn-primary:hover{
  transform: translateY(-1px);
  border-color: rgba(240,209,138,.65);
  box-shadow: 0 20px 70px rgba(215,184,106,.18), 0 26px 90px rgba(0,0,0,.65);
}
.btn-ghost{
  background:rgba(255,255,255,.03);
}
.btn-ghost:hover{
  background:rgba(215,184,106,.06);
  border-color:rgba(215,184,106,.30);
  transform: translateY(-1px);
}

.hero{
  padding:56px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:start;
}

.kicker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}
.pill{
  font-size:11px;
  letter-spacing:.2px;
  padding:9px 12px;
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.pill-hot{
  color:rgba(240,209,138,.95);
  border-color:rgba(215,184,106,.34);
  background:rgba(215,184,106,.08);
}

h1{
  margin:0 0 14px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:.2px;
}
.lead{
  margin:0 0 20px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin:18px 0 18px;
}
.stat{
  padding:14px 14px;
  border-radius: var(--r);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.stat-top{font-size:11px;color:var(--faint)}
.stat-val{font-size:14px;font-weight:800;margin-top:6px}
.stat-sub{font-size:11px;color:var(--muted);margin-top:6px;line-height:1.5}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.disclaimer{
  margin-top:14px;
  font-size:11px;
  line-height:1.6;
  color:rgba(183,192,211,.78);
  opacity:.95;
}

.hero-panel .panel{
  padding:18px;
  border-radius: var(--r2);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(215,184,106,.18);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.panel:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 240px at 18% 0%, rgba(215,184,106,.16), transparent 60%),
    radial-gradient(420px 220px at 86% 0%, rgba(255,95,46,.10), transparent 62%);
  opacity:.9;
  pointer-events:none;
}
.panel-header{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.panel-title{font-weight:800}
.panel-tag{
  font-size:11px;
  color:rgba(240,209,138,.92);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(215,184,106,.32);
  background:rgba(215,184,106,.08);
}

.embed{
  position:relative;
  display:grid;
  grid-template-columns: 10px 1fr;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,12,18,.75);
  box-shadow: 0 18px 60px rgba(0,0,0,.60);
}
.embed-bar{
  background: linear-gradient(180deg, rgba(59,231,166,.9), rgba(215,184,106,.2));
}
.embed-body{padding:14px}
.embed-title{font-weight:800; font-size:13px; margin-bottom:10px}
.lines{font-size:12px; line-height:1.75; color:rgba(233,237,246,.92)}
.k{color:rgba(240,209,138,.92); font-weight:600}

.panel-footer{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:12px;
}
.mini{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
}
.mini-dot{
  width:10px;
  height:10px;
  border-radius:99px;
  margin-top:4px;
  background:rgba(59,231,166,.9);
  box-shadow: 0 0 0 4px rgba(59,231,166,.10);
}
.mini-dot-warn{
  background:rgba(255,95,46,.92);
  box-shadow: 0 0 0 4px rgba(255,95,46,.10);
}

.badge-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.badge{
  padding:14px;
  border-radius: var(--r2);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  display:flex;
  gap:12px;
  align-items:center;
}
.badge-icon{
  width:34px;height:34px;border-radius:14px;
  border:1px solid rgba(215,184,106,.26);
  background:
    radial-gradient(10px 10px at 35% 35%, rgba(240,209,138,.65), transparent 60%),
    linear-gradient(180deg, rgba(215,184,106,.18), rgba(255,255,255,.02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.badge-icon-2{
  border-color: rgba(255,95,46,.26);
  background:
    radial-gradient(10px 10px at 35% 35%, rgba(255,95,46,.50), transparent 60%),
    linear-gradient(180deg, rgba(255,95,46,.14), rgba(255,255,255,.02));
}
.badge-title{font-weight:800;font-size:13px}
.badge-sub{font-size:11px;color:var(--muted);margin-top:4px;line-height:1.5}

.section{
  padding:44px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.section-head{
  margin-bottom:18px;
}
h2{
  margin:0 0 10px;
  font-size:26px;
  letter-spacing:.2px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.75;
  max-width: 920px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.card{
  padding:18px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
  position:relative;
}
.card-deep{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-color: rgba(215,184,106,.14);
}
.card-top{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.chip{
  width:34px;height:34px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
  background: rgba(215,184,106,.10);
  border:1px solid rgba(215,184,106,.22);
  color: rgba(240,209,138,.92);
}
.card-title{font-weight:800}
.card p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:13px;
  line-height:1.75;
}
.bullets{
  margin:0;
  padding-left:16px;
  color:rgba(183,192,211,.92);
  font-size:12px;
  line-height:1.7;
}
.bullets li{margin:6px 0}

.card-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.title{font-weight:900;font-size:16px}
.tag{
  font-size:11px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:var(--muted);
}
.tag-strong{
  border-color: rgba(59,231,166,.24);
  background: rgba(59,231,166,.06);
  color: rgba(59,231,166,.90);
}
.tag-titan{
  border-color: rgba(247,199,88,.26);
  background: rgba(247,199,88,.06);
  color: rgba(247,199,88,.92);
}
.tag-premium{
  border-color: rgba(240,209,138,.32);
  background: rgba(215,184,106,.08);
  color: rgba(240,209,138,.95);
}

.callout{
  margin-top:12px;
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.callout-title{font-weight:800;margin-bottom:6px;font-size:12px}
.small{font-size:12px;line-height:1.65;color:rgba(233,237,246,.88)}

.note{
  margin-top:14px;
  padding:14px 16px;
  border-radius: 18px;
  border:1px solid rgba(215,184,106,.18);
  background: rgba(215,184,106,.06);
  color: rgba(240,209,138,.92);
  font-size:12px;
  line-height:1.7;
}

.mini-lines{
  margin-top:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.price-card{
  padding:20px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.price-card.featured{
  border-color: rgba(215,184,106,.26);
  background: linear-gradient(180deg, rgba(215,184,106,.08), rgba(255,255,255,.02));
}
.price-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.price-name{font-weight:900;font-size:18px}
.price-tag{
  font-size:11px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}
.price{
  margin-top:14px;
  display:flex;
  align-items:baseline;
  gap:10px;
}
.price-val{
  font-size:34px;
  font-weight:900;
  letter-spacing:.2px;
}
.price-sub{font-size:12px;color:var(--muted)}
.feature{
  margin:14px 0 0;
  padding-left:16px;
  font-size:12px;
  color: rgba(183,192,211,.92);
  line-height:1.8;
}
.feature li{margin:7px 0}

.price-foot{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.subnote{
  font-size:12px;
  color: var(--muted);
  line-height:1.7;
}

.footer-note{
  margin-top:16px;
  font-size:12px;
  color: rgba(183,192,211,.92);
  line-height:1.7;
  padding:14px 16px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
}

.footer{
  padding:34px 0 44px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
}
.brand-mini{display:flex;align-items:center;gap:12px}
.tiny{font-size:11px;color:rgba(183,192,211,.80);line-height:1.6;max-width:520px}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:16px}
  h1{font-size:38px}
  .hero-stats{grid-template-columns:1fr; }
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .panel-footer{grid-template-columns:1fr}
  .badge-row{grid-template-columns:1fr}
  .nav{display:none}
}

@media (max-width: 520px){
  .wrap{width: calc(100% - 26px)}
  h1{font-size:32px}
  .btn{width:100%}
  .cta-row{gap:10px}
  .topbar-inner{gap:10px}
  .brand{min-width:auto}
}
/* Mobile menu */
.menu-btn{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  box-shadow: 0 10px 34px rgba(0,0,0,.35);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-direction:column;
  transition:.18s ease;
}
.menu-btn:hover{
  background:rgba(215,184,106,.06);
  border-color:rgba(215,184,106,.30);
  transform: translateY(-1px);
}
.menu-btn span{
  width:20px;
  height:2px;
  background:rgba(233,237,246,.92);
  border-radius:999px;
  display:block;
  box-shadow: 0 0 0 1px rgba(0,0,0,.10);
}

.mobile-nav{
  position:fixed;
  top:74px; /* just below header */
  left:0;
  right:0;
  z-index:40;
  opacity:0;
  transform: translateY(-10px);
  pointer-events:none;
  transition: .18s ease;
}
.mobile-nav.open{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.mobile-nav-inner{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(215,184,106,.18);
  background: rgba(5,6,8,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 120px rgba(0,0,0,.70);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.mnav-link{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
  transition:.18s ease;
}
.mnav-link:hover{
  color:var(--text);
  border-color:rgba(215,184,106,.22);
  background:rgba(215,184,106,.06);
}

/* Show hamburger on mobile, hide desktop nav */
@media (max-width: 980px){
  .nav{display:none;}
  .menu-btn{display:flex;}
}
