/* ════════════════════════════════════════════════════════════
   WaveMe — Main Stylesheet
   Design: Dark luxury · Wave motifs · Premium app distribution
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg-deep:          #09090f;
  --bg-base:          #0d0d1a;
  --bg-card:          #111126;
  --bg-card-hover:    #161630;
  --bg-input:         #0f0f20;
  --bg-sidebar:       #0b0b18;
  --footer-bg:        #07070f;

  --accent-purple:    #8b5cf6;
  --accent-blue:      #38bdf8;
  --accent-violet:    #a78bfa;
  --accent-gradient:  linear-gradient(135deg, #8b5cf6 0%, #38bdf8 100%);
  --accent-glow:      0 0 40px #8b5cf630;

  --text-primary:     #f0f0ff;
  --text-secondary:   #a0a0c0;
  --text-muted:       #5a5a80;

  --border:           #1e1e35;
  --border-strong:    #2a2a48;
  --border-accent:    #8b5cf630;

  --danger:           #f43f5e;
  --success:          #10b981;

  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        20px;
  --radius-xl:        28px;

  --shadow-card:      0 4px 24px #00000040, 0 1px 4px #00000060;
  --shadow-float:     0 8px 40px #00000060, 0 2px 8px #00000080;

  --transition:       0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
code {
  font-size: .82em;
  background: #1a1a30;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-violet);
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.02em;
}

.logo-icon { display: flex; align-items: center; }
.logo-text em { font-style: normal; color: var(--accent-violet); }

.header-nav { display: flex; align-items: center; gap: .25rem; }

.nav-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-card); }

.console-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.console-link:hover {
  border-color: var(--accent-purple);
  color: var(--accent-violet);
  box-shadow: var(--accent-glow);
}

.danger-link:hover { color: var(--danger) !important; border-color: var(--danger) !important; box-shadow: 0 0 20px #f43f5e20 !important; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 7rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.orb-1 {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}

.orb-2 {
  width: 400px; height: 400px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
}

.orb-3 {
  width: 300px; height: 300px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #6d28d9 0%, transparent 70%);
  opacity: .2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #8b5cf620, #38bdf820);
  border: 1px solid var(--border-accent);
  color: var(--accent-violet);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 1.8rem; font-family: 'Syne', sans-serif; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat span { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

.wave-divider { margin-top: 3rem; line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; display: block; }

/* ── Main Content ─────────────────────────────────────────── */
.main-content { padding: 3rem 2rem 5rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.count-badge {
  background: var(--accent-gradient);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
}

/* ── App Grid ─────────────────────────────────────────────── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  animation: cardIn .4s ease both;
}

.app-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-inner { padding: 1.4rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; }

.card-top { display: flex; gap: 1rem; align-items: flex-start; }

.app-icon-wrap { position: relative; flex-shrink: 0; }

.app-icon-img {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--bg-input);
}

.app-icon-placeholder {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1a1a40, #2a1a60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-violet);
  border: 1px solid var(--border-accent);
}

.platform-dot {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

.app-meta { flex: 1; min-width: 0; }

.app-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .4rem;
}

.app-tags { display: flex; flex-wrap: wrap; gap: .35rem; }

.tag {
  font-size: .72rem;
  font-weight: 500;
  padding: .2rem .55rem;
  border-radius: 100px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.app-desc {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.app-info-row { display: flex; flex-wrap: wrap; gap: .4rem; }

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--text-muted);
}

.info-chip svg { opacity: .7; }

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-gradient);
  color: white;
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 16px #8b5cf640;
}

.download-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 24px #8b5cf660;
}

/* ── Empty State ──────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}

.empty-icon { display: flex; justify-content: center; margin-bottom: 1.5rem; }

.empty-state h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: .5rem;
}

.empty-state a { color: var(--accent-violet); }
.empty-state.small { padding: 2rem; text-align: left; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); }

.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 40px; display: block; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-secondary);
}

.footer-copy { font-size: .82rem; color: var(--text-muted); }

.footer-console-link {
  font-size: .82rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-console-link:hover { color: var(--accent-violet); }
.console-footer .footer-wave { display: none; }
.console-footer { border-top: 1px solid var(--border); padding-top: 0 !important; }

/* ══════════════════════════════════════════════════════════════
   CONSOLE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Login Screen ─────────────────────────────────────────── */
.login-screen {
  min-height: calc(100vh - 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.login-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.login-card {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-float);
  animation: loginIn .5s cubic-bezier(.22,1,.36,1) both;
}

@keyframes loginIn {
  from { opacity:0; transform: translateY(30px) scale(.97); }
  to   { opacity:1; transform: none; }
}

.login-header { text-align: center; margin-bottom: 2rem; }

.login-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #8b5cf620, #38bdf820);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--accent-violet);
}

.login-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .4rem;
}

.login-header p { color: var(--text-muted); font-size: .9rem; }

/* ── Console Layout ───────────────────────────────────────── */
.console-layout {
  display: flex;
  min-height: calc(100vh - 128px);
}

.console-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.sidebar-section { padding: .75rem 1rem 1.25rem; }
.sidebar-section + .sidebar-section { border-top: 1px solid var(--border); }

.sidebar-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 .5rem;
  margin-bottom: .5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  position: relative;
}

.sidebar-link:hover { background: var(--bg-card); color: var(--text-primary); }
.sidebar-link.active { background: linear-gradient(135deg, #8b5cf618, #38bdf812); color: var(--accent-violet); }

.sidebar-badge {
  margin-left: auto;
  background: var(--accent-gradient);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 100px;
  min-width: 20px;
  text-align: center;
}

.sidebar-stats { padding: 1rem; }

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  font-size: .85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child { border-bottom: none; }
.stat-row strong { color: var(--text-primary); font-weight: 600; }

.console-main {
  flex: 1;
  padding: 2.5rem;
  overflow-y: auto;
  max-width: 900px;
}

/* ── Console Sections ─────────────────────────────────────── */
.console-section { animation: fadeUp .3s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.section-head { margin-bottom: 2rem; }
.section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .3rem;
}
.section-head p { color: var(--text-muted); font-size: .9rem; }

/* ── Forms ────────────────────────────────────────────────── */
.upload-form, .login-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .45rem; }

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group label small { color: var(--text-muted); font-weight: 400; }

.required { color: var(--accent-purple); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px #8b5cf620;
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-deep); }

.form-group textarea { resize: vertical; min-height: 100px; }

/* ── File Drop Zones ──────────────────────────────────────── */
.file-drop-zone {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-input);
  position: relative;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: var(--accent-purple);
  background: #8b5cf608;
}

.file-drop-primary {
  border-color: #8b5cf640;
  background: linear-gradient(135deg, #8b5cf608, #38bdf808);
}

.file-drop-primary:hover,
.file-drop-primary.drag-over {
  border-color: var(--accent-purple);
  background: #8b5cf612;
}

.drop-icon { color: var(--text-muted); margin-bottom: .6rem; display: flex; justify-content: center; }
.drop-icon-primary { color: var(--accent-purple); }

.file-drop-zone p { font-size: .9rem; color: var(--text-secondary); margin-bottom: .2rem; }
.file-drop-zone small { color: var(--text-muted); font-size: .78rem; }

.file-label-link {
  color: var(--accent-violet);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.icon-preview img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin: .75rem auto 0;
  border: 2px solid var(--border-accent);
}

.file-info {
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--accent-violet);
  font-weight: 500;
}

/* ── Upload Progress ──────────────────────────────────────── */
.upload-progress { display: flex; flex-direction: column; gap: .5rem; }

.progress-bar-wrap {
  height: 6px;
  background: var(--bg-input);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: 100px;
  transition: width .3s ease;
}

#progressText { font-size: .82rem; color: var(--text-muted); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-gradient);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  padding: .7rem 1.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 16px #8b5cf640;
}

.btn-primary:hover { transform: scale(1.03); box-shadow: 0 4px 24px #8b5cf660; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .88rem;
  padding: .5rem .75rem;
  border-radius: 100px;
  transition: var(--transition);
}

.btn-ghost:hover { color: var(--text-secondary); background: var(--bg-card); }

.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── Manage Table ─────────────────────────────────────────── */
.manage-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }

.manage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.manage-table th {
  text-align: left;
  padding: .9rem 1.1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border);
}

.manage-table td {
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.manage-table tr:last-child td { border-bottom: none; }
.manage-table tr:hover td { background: var(--bg-card); }

.table-app-info { display: flex; align-items: center; gap: .75rem; }

.table-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.table-icon-placeholder {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1a40, #2a1a60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  color: var(--accent-violet);
  flex-shrink: 0;
}

.table-app-info strong { color: var(--text-primary); font-weight: 600; }
.table-app-info small { color: var(--text-muted); font-size: .78rem; }

.table-actions { display: flex; gap: .4rem; justify-content: flex-end; }

.btn-table {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.btn-table:hover { border-color: var(--accent-purple); color: var(--accent-violet); background: #8b5cf610; }

.btn-table-danger:hover { border-color: var(--danger); color: var(--danger); background: #f43f5e10; }

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
  padding: .9rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  animation: alertIn .3s ease;
}

@keyframes alertIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.alert-error   { background: #f43f5e15; border: 1px solid #f43f5e30; color: #f87171; }
.alert-success { background: #10b98115; border: 1px solid #10b98130; color: #34d399; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .console-layout { flex-direction: column; }
  .console-sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
  }
  .sidebar-section { padding: 0; white-space: nowrap; }
  .sidebar-section + .sidebar-section { border-top: none; border-left: 1px solid var(--border); padding-left: 1rem; }
  .sidebar-label { display: none; }
  .sidebar-stats { display: none; }
  .console-main { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 1rem; }
  .hero { padding: 5rem 1rem 3rem; }
  .hero-stats { flex-direction: column; gap: 1rem; padding: 1rem 1.5rem; }
  .stat-div { width: 40px; height: 1px; }
  .main-content { padding: 2rem 1rem 4rem; }
  .apps-grid { grid-template-columns: 1fr; }
  .console-main { padding: 1rem; }
}
