:root {
  --bg: #0b1120;
  --card: #0f1629;
  --muted: #9fb1cc;
  --text: #e8edf5;
  --accent: #56c2e6;
  --accent-2: #7cf29c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(86, 194, 230, 0.08), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(124, 242, 156, 0.08), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 64px;
}

.section-shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(11, 17, 32, 0.8);
  border-bottom: 1px solid rgba(86, 194, 230, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 3vw;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(86, 194, 230, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 48px 3vw 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #041226;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(86, 194, 230, 0.35);
  color: var(--text);
  box-shadow: none;
}

.hero-media {
  position: relative;
}

.hero-image {
  background-image: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  right: 18px;
  background: var(--card);
  border: 1px solid rgba(86, 194, 230, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  max-width: 240px;
  box-shadow: var(--shadow);
}

.badge-title {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(124, 242, 156, 0.15);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 6px;
}

.section-header {
  margin: 32px 0 20px;
}

.section-header h2 {
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--muted);
}

.section-actions {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

.highlight-grid, .story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(86, 194, 230, 0.1);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(86, 194, 230, 0.4);
}

.blog-section {
  padding-bottom: 32px;
}

.blog-feed {
  display: grid;
  gap: 16px;
}

.blog-article {
  padding: 22px;
}

.blog-article__header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}

.blog-article__image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(86, 194, 230, 0.2);
}

.blog-article__body {
  color: var(--muted);
  border-top: 1px solid rgba(86, 194, 230, 0.12);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.blog-hero-image {
  background-image: url('https://images.unsplash.com/photo-1524255684952-d7185b509571?auto=format&fit=crop&w=1200&q=80');
}

.card img, .card .cover {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.tag {
  background: rgba(86, 194, 230, 0.15);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.card h3 {
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

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

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #f0f4fb;
  font-weight: 600;
}

.about {
  margin-top: 40px;
  background: linear-gradient(120deg, rgba(86, 194, 230, 0.08), rgba(124, 242, 156, 0.06));
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(86, 194, 230, 0.18);
}

.section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: start;
}

.about-text {
  color: var(--muted);
  margin: 10px 0 16px;
}

.stat-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.stat-line strong {
  display: block;
  font-size: 24px;
}

.stat-line span {
  color: var(--muted);
  font-size: 12px;
}

.about-card {
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid rgba(86, 194, 230, 0.2);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin-bottom: 8px;
}

.about-card ol {
  margin-left: 18px;
  color: var(--muted);
}

.about-card li + li {
  margin-top: 6px;
}

.post-hero {
  padding: 32px 0 10px;
}

.post-hero h1 {
  margin-bottom: 10px;
}

.post-meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.post-cover {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(86, 194, 230, 0.18);
  box-shadow: var(--shadow);
}

.post-body {
  margin: 18px 0 10px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.post-body p {
  color: var(--muted);
}

.post-body figure {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 14px;
}

.post-body figcaption {
  color: var(--muted);
  font-size: 14px;
}

.post-body img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(86, 194, 230, 0.15);
}

.post-body .post-image-half {
  width: 50%;
  max-width: 640px;
  min-width: 240px;
  margin: 0 auto;
  display: block;
}

.tip {
  margin-top: 10px;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .post-body .post-image-half {
    width: 100%;
  }
}

.site-footer {
  width: min(1100px, 92vw);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  color: var(--muted);
  border-top: 1px solid rgba(86, 194, 230, 0.12);
}

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

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }
  .nav-links {
    display: none;
  }

  .blog-article__header {
    grid-template-columns: 1fr;
  }
  .blog-article__image {
    height: 180px;
  }
}
