/* ============================================================
   ACADEMIA DE CRACKS · Base Reset & Typography
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; overscroll-behavior: none; }
body {
  background:
    radial-gradient(circle at 20% -10%, rgba(30, 155, 255, 0.08), transparent 45%),
    radial-gradient(circle at 80% 110%, rgba(0, 212, 255, 0.04), transparent 50%),
    var(--carbon);
  color: var(--smoke);
  font-family: 'Outfit', system-ui, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}
/* Grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Typography */
h1, h2, h3, h4, .display {
  font-family: 'Chakra Petch', sans-serif;
  letter-spacing: -0.01em;
}
.num {
  font-family: 'Chakra Petch', sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.label {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--smoke-dim);
}

/* Mock status bar inside phone */
.statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 56px;
  z-index: 50;
  display: flex; align-items: flex-end;
  justify-content: space-between;
  padding: 0 28px 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--smoke);
  pointer-events: none;
}
.statusbar .signal { display: flex; gap: 4px; align-items: center; }
.statusbar .signal svg { width: 16px; height: 16px; }

/* Scrollable content area */
.scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroll::-webkit-scrollbar { display: none; }

/* Layout utilities */
.stack { display: flex; flex-direction: column; gap: 12px; }
.row   { display: flex; gap: 12px; align-items: center; }
.pad   { padding: 0 16px; }
.center-text { text-align: center; }
.icon  { width: 20px; height: 20px; }
.hide  { display: none !important; }
