@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Fira+Code:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050810;
}

button,
input,
textarea,
select {
  font: inherit;
}

.lp-root {
  background: #050810;
  color: #e8eaf6;
  font-family: 'Space Grotesk', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.lp-root::before {
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(80, 40, 200, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0, 180, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 30% 20% at 60% 50%, rgba(255, 80, 120, 0.07) 0%, transparent 60%);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.canvas-bg {
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.streak {
  animation: streakAnim linear infinite;
  border-radius: 999px;
  opacity: 0;
  position: absolute;
}

@keyframes streakAnim {
  0% { opacity: 0; transform: translate(0, 0) scaleX(0.1); }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scaleX(1); }
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(80, 100, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 100, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.lp-nav {
  align-items: center;
  border-bottom: 0.5px solid rgba(100, 120, 255, 0.12);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 22px 40px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 16, 0.74);
}

.nav-logo {
  color: #7c9bff;
  font-family: 'Fira Code', monospace;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(200, 210, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #a5b8ff;
}

.nav-cta,
.admin-entry {
  background: rgba(60, 80, 200, 0.08);
  border: 0.5px solid rgba(100, 140, 255, 0.4);
  border-radius: 4px;
  color: #7c9bff;
  cursor: pointer;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  padding: 8px 18px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-cta:hover,
.admin-entry:hover {
  background: rgba(60, 80, 200, 0.18);
  border-color: rgba(100, 140, 255, 0.7);
}

.hero {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  min-height: 84vh;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.hero-text {
  padding: 60px 0;
}

.hero-eyebrow {
  align-items: center;
  color: #5570e0;
  display: flex;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  gap: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-eyebrow::before {
  background: #5570e0;
  content: '';
  display: inline-block;
  height: 1px;
  width: 28px;
}

.section-eyebrow::before {
  width: 20px;
}

.hero-h1 {
  color: #f0f4ff;
  font-size: clamp(32px, 4.1vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
}

.accent {
  background: linear-gradient(90deg, #6b8fff 0%, #c06bff 50%, #ff6b8a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: rgba(200, 210, 255, 0.55);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-ghost,
.cf-submit,
.admin-button {
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-primary,
.cf-submit,
.admin-button.primary {
  background: linear-gradient(135deg, #4a6eff, #8b4fff);
  border: none;
  box-shadow: 0 0 28px rgba(74, 110, 255, 0.3);
  color: #fff;
}

.btn-primary:hover,
.cf-submit:hover,
.admin-button.primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost,
.admin-button {
  background: transparent;
  border: 0.5px solid rgba(180, 200, 255, 0.2);
  color: rgba(200, 210, 255, 0.6);
}

.btn-ghost:hover,
.admin-button:hover {
  border-color: rgba(180, 200, 255, 0.5);
  color: rgba(220, 230, 255, 0.9);
}

.hero-visual {
  align-items: center;
  display: flex;
  height: 500px;
  justify-content: center;
  position: relative;
}

.hero-img-wrap {
  height: 420px;
  position: relative;
  width: 320px;
}

.hero-img-glow {
  background: radial-gradient(ellipse at 60% 40%, rgba(100, 80, 255, 0.22) 0%, rgba(255, 80, 140, 0.10) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  inset: -30px;
  position: absolute;
  z-index: 0;
}

.hero-img {
  border: 0.5px solid rgba(100, 120, 255, 0.2);
  border-radius: 12px;
  display: block;
  filter: saturate(1.1) contrast(1.05);
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-badge,
.hero-badge-right {
  background: rgba(10, 14, 30, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 14px 18px;
  position: absolute;
  z-index: 10;
}

.hero-badge {
  border: 0.5px solid rgba(100, 140, 255, 0.25);
  bottom: -18px;
  left: -24px;
}

.hero-badge-right {
  border: 0.5px solid rgba(200, 80, 255, 0.22);
  right: -28px;
  text-align: center;
  top: 30px;
}

.badge-label {
  color: rgba(150, 170, 255, 0.5);
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.badge-label-pink {
  color: rgba(200, 120, 255, 0.5);
}

.badge-val {
  color: #7c9bff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.badge-val-pink {
  color: #c06bff;
}

.badge-unit {
  color: rgba(150, 170, 255, 0.5);
  font-size: 11px;
  margin-top: 2px;
}

.badge-unit-pink {
  color: rgba(200, 120, 255, 0.4);
}

.tech-strip {
  align-items: center;
  border-bottom: 0.5px solid rgba(100, 120, 255, 0.08);
  border-top: 0.5px solid rgba(100, 120, 255, 0.08);
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 28px 40px;
  position: relative;
  z-index: 5;
}

.tech-label,
.stat-label,
.project-type,
.project-year,
.project-link,
.footer-logo,
.footer-copy,
.footer-motto,
.admin-kicker,
.admin-meta {
  font-family: 'Fira Code', monospace;
}

.tech-label {
  color: rgba(150, 170, 255, 0.3);
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background: rgba(50, 70, 180, 0.05);
  border: 0.5px solid rgba(100, 120, 255, 0.15);
  border-radius: 3px;
  color: rgba(180, 200, 255, 0.45);
  cursor: default;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  padding: 5px 14px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.tech-tag:hover {
  border-color: rgba(100, 140, 255, 0.4);
  color: rgba(180, 200, 255, 0.85);
}

.stats-row {
  border-bottom: 0.5px solid rgba(100, 120, 255, 0.08);
  border-top: 0.5px solid rgba(100, 120, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 5;
}

.stat-item {
  border-right: 0.5px solid rgba(100, 120, 255, 0.08);
  padding: 40px 32px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  background: linear-gradient(90deg, #6b8fff, #c06bff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(170, 185, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 80px 40px;
  position: relative;
  z-index: 5;
}

.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  align-items: center;
  color: #5570e0;
  display: flex;
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  gap: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-h2 {
  color: #f0f4ff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cards-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.project-card,
.admin-panel,
.admin-card,
.admin-login {
  background: rgba(12, 16, 38, 0.7);
  border: 0.5px solid rgba(100, 120, 255, 0.12);
  border-radius: 10px;
}

.service-card {
  cursor: default;
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}

.service-card:hover,
.project-card:hover {
  background: rgba(20, 28, 65, 0.8);
  border-color: rgba(100, 140, 255, 0.3);
}

.card-icon {
  align-items: center;
  border-radius: 8px;
  display: flex;
  font-size: 18px;
  height: 40px;
  justify-content: center;
  margin-bottom: 18px;
  width: 40px;
}

.card-icon-blue { background: rgba(60, 100, 255, 0.12); }
.card-icon-purple { background: rgba(150, 60, 255, 0.12); }
.card-icon-pink { background: rgba(255, 60, 140, 0.12); }
.card-icon-teal { background: rgba(0, 200, 200, 0.10); }
.card-icon-amber { background: rgba(255, 160, 30, 0.10); }
.card-icon-green { background: rgba(60, 200, 100, 0.10); }

.card-h3 {
  color: #d8e0ff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.card-desc {
  color: rgba(170, 185, 255, 0.45);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

.scanline {
  background: linear-gradient(90deg, transparent, rgba(100, 140, 255, 0.15) 30%, rgba(180, 100, 255, 0.18) 60%, transparent);
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 70%;
  z-index: 3;
}

.section-projects {
  padding-top: 0;
}

.projects-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 430px;
  min-height: 430px;
  overflow: hidden;
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}

.project-card.featured {
  background: rgba(12, 16, 38, 0.7);
  border-color: rgba(100, 120, 255, 0.12);
}

.project-cover {
  border: 0.5px solid rgba(100, 120, 255, 0.12);
  border-radius: 8px;
  flex: 0 0 190px;
  height: 190px;
  margin-bottom: 20px;
  overflow: hidden;
}

.project-cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-cover-placeholder {
  align-items: center;
  background: linear-gradient(135deg, rgba(60, 100, 255, 0.14), rgba(150, 60, 255, 0.12));
  display: flex;
  justify-content: center;
}

.project-cover-placeholder span {
  color: rgba(200, 215, 255, 0.48);
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-bar {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.project-type {
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.type-blue { background: rgba(60, 100, 255, 0.12); color: #6b8fff; }
.type-purple { background: rgba(150, 60, 255, 0.12); color: #b06bff; }
.type-pink { background: rgba(255, 60, 140, 0.12); color: #ff6baa; }
.type-teal { background: rgba(0, 200, 200, 0.10); color: #62d9e6; }

.project-year {
  color: rgba(150, 170, 255, 0.3);
  font-size: 11px;
}

.project-h3 {
  color: #e0e8ff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.project-card:not(.featured) .project-h3 {
  font-size: 15px;
}

.project-desc {
  color: rgba(170, 185, 255, 0.45);
  display: -webkit-box;
  font-size: 13px;
  font-weight: 300;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.65;
  margin-bottom: 20px;
  overflow: hidden;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  max-height: 48px;
  overflow: hidden;
}

.project-tag {
  background: rgba(90, 110, 255, 0.10);
  border: 0.5px solid rgba(100, 120, 255, 0.14);
  border-radius: 3px;
  color: rgba(185, 200, 255, 0.55);
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  padding: 4px 8px;
}

.project-link {
  align-items: center;
  color: #6b8fff;
  display: inline-flex;
  font-size: 11px;
  gap: 6px;
  letter-spacing: 0.06em;
  margin-top: auto;
  text-decoration: none;
  transition: color 0.2s;
}

.project-link:hover {
  color: #a5b8ff;
}

.project-link-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.contact-section {
  align-items: center;
  border-top: 0.5px solid rgba(100, 120, 255, 0.08);
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  padding: 80px 40px;
  position: relative;
  z-index: 5;
}

.contact-h2 {
  color: #f0f4ff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-sub {
  color: rgba(170, 185, 255, 0.45);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-link {
  align-items: center;
  background: rgba(40, 55, 150, 0.06);
  border: 0.5px solid rgba(100, 120, 255, 0.2);
  border-radius: 4px;
  color: rgba(180, 200, 255, 0.6);
  display: inline-flex;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  gap: 8px;
  padding: 9px 18px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.contact-link:hover {
  border-color: rgba(100, 140, 255, 0.45);
  color: rgba(210, 220, 255, 0.9);
}

.contact-form-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cf-input,
.cf-textarea,
.admin-input,
.admin-textarea,
.admin-select {
  background: rgba(12, 18, 42, 0.8);
  border: 0.5px solid rgba(100, 120, 255, 0.15);
  border-radius: 6px;
  color: rgba(200, 215, 255, 0.8);
  outline: none;
  padding: 12px 16px;
  resize: vertical;
  transition: border-color 0.2s;
  width: 100%;
}

.cf-input::placeholder,
.cf-textarea::placeholder,
.admin-input::placeholder,
.admin-textarea::placeholder {
  color: rgba(150, 170, 255, 0.22);
  font-weight: 300;
}

.cf-input:focus,
.cf-textarea:focus,
.admin-input:focus,
.admin-textarea:focus,
.admin-select:focus {
  border-color: rgba(100, 140, 255, 0.45);
}

.cf-textarea,
.admin-textarea {
  min-height: 110px;
}

.cf-submit {
  align-self: flex-start;
}

.footer {
  align-items: center;
  border-top: 0.5px solid rgba(100, 120, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 40px;
  position: relative;
  z-index: 5;
}

.footer-logo {
  color: rgba(120, 150, 255, 0.4);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-copy,
.footer-motto {
  color: rgba(150, 170, 255, 0.22);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: right;
}

.footer-motto {
  margin-top: 6px;
}

.admin-shell {
  min-height: 100vh;
  padding: 32px 40px 64px;
  position: relative;
  z-index: 5;
}

.admin-top {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.admin-title {
  color: #f0f4ff;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.admin-kicker {
  color: #5570e0;
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.admin-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
}

.admin-panel,
.admin-card,
.admin-login {
  padding: 22px;
}

.admin-login {
  margin: 8vh auto 0;
  max-width: 440px;
  position: relative;
  z-index: 5;
}

.admin-panel h2,
.admin-card h3,
.admin-login h1 {
  color: #f0f4ff;
  font-size: 18px;
  margin-bottom: 16px;
}

.admin-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.admin-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-card {
  display: grid;
  gap: 16px;
  grid-template-columns: 92px 1fr auto;
}

.admin-preview {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(30, 40, 100, 0.22);
  border: 0.5px solid rgba(100, 120, 255, 0.12);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.admin-preview img,
.admin-preview video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.admin-preview span {
  color: rgba(180, 200, 255, 0.36);
  font-family: 'Fira Code', monospace;
  font-size: 11px;
}

.admin-meta {
  color: rgba(150, 170, 255, 0.36);
  font-size: 11px;
  margin-top: 6px;
}

.admin-card-title {
  color: #e0e8ff;
  font-size: 16px;
  font-weight: 600;
}

.admin-card-desc {
  color: rgba(170, 185, 255, 0.48);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 8px;
}

.admin-inline-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-button.danger {
  border-color: rgba(255, 80, 120, 0.36);
  color: #ff8aa5;
}

.admin-button.small {
  font-size: 11px;
  padding: 8px 12px;
}

.admin-checkbox {
  align-items: center;
  color: rgba(200, 210, 255, 0.58);
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
}

.admin-status {
  color: rgba(170, 185, 255, 0.5);
  font-size: 13px;
  min-height: 20px;
}

.form-status {
  color: rgba(170, 185, 255, 0.58);
  font-size: 13px;
  min-height: 20px;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero,
  .contact-section,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-visual {
    height: auto;
    padding: 18px 0 40px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 760px) {
  .lp-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .nav-links {
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .hero,
  .section,
  .contact-section,
  .tech-strip,
  .footer,
  .admin-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-img-wrap {
    height: 360px;
    max-width: 320px;
    width: calc(100vw - 80px);
  }

  .hero-badge {
    left: -8px;
  }

  .hero-badge-right {
    right: -8px;
  }

  .footer,
  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    grid-column: auto;
  }

  .footer-copy,
  .footer-motto {
    text-align: left;
  }

  .admin-card {
    grid-template-columns: 72px 1fr;
  }

  .admin-inline-buttons {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: 34px;
  }
}
