:root {
  --line: rgba(255, 255, 255, 0.1);
  --text: #eff4ff;
  --muted: #aab6d3;
  --primary-strong: #4f7dff;
  --accent: #56f0c8;
  --shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --container: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(86, 240, 200, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(115, 167, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #091120 0%, #060b16 46%, #04070f 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: 0.4;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 125, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 30%, rgba(86, 240, 200, 0.12), transparent 20%);
  filter: blur(8px);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 19, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-wrap {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  box-shadow: 0 12px 30px rgba(79, 125, 255, 0.35);
}

.hero {
  position: relative;
  padding: 92px 0 72px;
}

.hero-single {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

h1,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 680px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #05101d;
  background: linear-gradient(135deg, #8db8ff, #64f4d1);
  box-shadow: 0 16px 30px rgba(92, 180, 255, 0.28);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
}

.glass {
  background: linear-gradient(180deg, rgba(17, 27, 47, 0.82), rgba(8, 14, 25, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.entry-card {
  max-width: 640px;
  padding: 24px 26px;
  border-radius: var(--radius);
}

.entry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.entry-row + .entry-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.entry-row span {
  color: var(--muted);
}

.entry-row strong {
  color: var(--text);
}

.site-footer {
  padding: 0 0 32px;
}

.footer-minimal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .hero {
    padding: 72px 0 56px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .nav-wrap,
  .footer-wrap,
  .entry-row {
    flex-wrap: wrap;
  }

  .footer-wrap {
    gap: 8px;
  }

  .entry-row {
    justify-content: flex-start;
  }
}
