* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(135deg, #0a0f1f, #1b2336 60%, #05070d);
  color: #e8edf5;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 31, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}

.header-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  border-radius: 6px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4fc3ff;
}

/* HERO / INTRO */
.intro-section {
  margin-top: 7rem;
  padding: 4rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}

.intro-content {
  max-width: 520px;
}

.intro-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #4fc3ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 14px rgba(79, 195, 255, 0.35);
}

.intro-subtitle {
  font-size: 1.1rem;
  color: #c7d2e0;
  margin-bottom: 2rem;
}

.intro-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.25s ease;
}

.primary-btn {
  background: #4fc3ff;
  color: #0a0f1f;
}

.primary-btn:hover {
  background: #27b4ff;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(39, 180, 255, 0.45);
}

.outline-btn {
  border: 2px solid #4fc3ff;
  color: #4fc3ff;
}

.outline-btn:hover {
  background: #4fc3ff;
  color: #0a0f1f;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(39, 180, 255, 0.45);
}

.btn-icon {
  width: 1.2rem;
  margin-right: 0.5rem;
}

/* IMAGE PREVIEW */
.preview-img {
  width: 95%;
  max-width: 640px;
  border-radius: 14px;
  box-shadow: 0 0 35px rgba(79, 195, 255, 0.15);
  transition: transform 0.35s ease;
}

.preview-img:hover {
  transform: scale(1.03);
}

.status-badge {
  margin-top: 12px;
}

/* FOOTER */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 1rem;
  text-align: center;
  color: #9aa7b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #4fc3ff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.75;
}

/* MOBILE */
@media (max-width: 768px) {
  .intro-title {
    font-size: 2.1rem;
  }
}
