:root {
  --bg: #05060a;
  --panel: #0b0c12;
  --accent: #2dd4ff;
  --accent-2: #60a5fa;
  --muted: #9ca3af;
  --text: #e5e7eb;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(120% 140% at 20% 20%, rgba(45, 212, 255, 0.15), transparent 40%), radial-gradient(90% 110% at 80% 0%, rgba(96, 165, 250, 0.12), transparent 35%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 10, 0.75);
  border-bottom: 1px solid rgba(96, 165, 250, 0.15);
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px dashed rgba(45, 212, 255, 0.5);
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(45, 212, 255, 0.06);
  font-size: 12px;
  text-transform: uppercase;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover { color: var(--accent); }

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0c12;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(45, 212, 255, 0.2);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.sub {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 20px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 255, 0.4);
  background: rgba(45, 212, 255, 0.08);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(45, 212, 255, 0.12);
  border-color: rgba(45, 212, 255, 0.7);
}

.card {
  background: var(--panel);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.panel-gradient {
  background: linear-gradient(160deg, rgba(45, 212, 255, 0.15), rgba(96, 165, 250, 0.07));
  border: 1px solid rgba(96, 165, 250, 0.12);
}

.two-up {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-card {
  padding: 12px;
  background: rgba(11, 12, 18, 0.8);
  border: 1px solid rgba(45, 212, 255, 0.16);
}

.card-dark {
  background: rgba(11, 12, 18, 0.8);
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(45, 212, 255, 0.08);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid rgba(45, 212, 255, 0.25);
  margin-bottom: 16px;
}

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

.placeholder {
  position: relative;
  width: 100%;
  padding-top: 62%;
  border-radius: 14px;
  border: 1.5px dashed rgba(45, 212, 255, 0.4);
  background: rgba(45, 212, 255, 0.06);
  overflow: hidden;
}

.placeholder span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.media-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1.5px solid rgba(45, 212, 255, 0.35);
  background: rgba(45, 212, 255, 0.06);
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hero-img {
  max-height: 320px;
  object-fit: contain;
  background: rgba(45, 212, 255, 0.08);
  padding: 18px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 50px 0 14px;
}

.section-title h2 {
  margin: 0;
  font-size: 26px;
}

.section-title small {
  color: var(--muted);
  letter-spacing: 0.4px;
}

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

.policy h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.policy p {
  margin: 0 0 10px;
  color: var(--muted);
}

footer {
  margin-top: 60px;
  padding: 24px 0 8px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(96, 165, 250, 0.12);
  color: var(--text);
  font-size: 13px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  margin-right: 8px;
}

@media (max-width: 640px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero { margin-top: 10px; }
  .two-up { grid-template-columns: 1fr; }
}

[data-anchor] { scroll-margin-top: 88px; }
