/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg-1: #04060a;
  --bg-2: #071027;
  --panel: #081426;
  --card: #0b1525;
  --muted: #98a6ba;
  --accent-a: #7fa6ff;
  --accent-b: #63d2bb;
  --text: #e8f0fa;
  --glass: rgba(255, 255, 255, 0.02);
  --border: rgba(255, 255, 255, 0.06);
  --explore-app-btn: var(--bg-2);
  --radius: 14px;
  font-family: 'Libertinus Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reset */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

/* Page container */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
header.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 6px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01), transparent);
  border: 1px solid var(--border);
  min-width: 0;
}

.brand i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent-a);
}

.brand .text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand .name {
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand .tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Simple nav (right) */
nav.top-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.nav-link.primary {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: #071024;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Hero ---------- */
.hero {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(2, 6, 23, 0.5);
  min-width: 0;
}

/* Left content */
.hero .eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--glass);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.hero h1 {
  margin: 0 0 12px 0;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.08;
  color: var(--text);
}

.hero p.lead {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
}

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

.cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  color: var(--explore-app-btn);
}

.btn-explore {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
}

/* Right artwork */
.art-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.art {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(127, 166, 255, 0.09), rgba(99, 210, 187, 0.05));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  box-shadow: inset 0 -18px 40px rgba(2, 6, 23, 0.04);
}

.art .icon {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #021124;
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.45);
}

.art .meta {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  max-width: 220px;
}

/* ---------- Bottom note (legal & context) ---------- */
.note {
  width: 100%;
  max-width: 980px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  max-width: 900px;
}

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

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

/* ---------- Footer ---------- */
footer.site-foot {
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 4px;
}

/* -------------------------
       Responsiveness
       - small screens: stack hero, art above text
       - ensure buttons are full-width for touch
       ------------------------- */
@media (max-width:920px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 18px;
  }

  .art {
    height: 260px;
    max-width: 260px;
    margin: 0 auto;
  }

  .art .icon {
    width: 84px;
    height: 84px;
    font-size: 36px;
  }
}

@media (max-width:520px) {
  .page {
    padding: 18px;
    gap: 20px;
  }

  header.site-header {
    padding: 6px 0;
  }

  nav.top-nav {
    gap: 8px;
  }

  .hero {
    padding: 16px;
    gap: 12px;
  }

  .art {
    height: 200px;
    max-width: 200px;
  }

  .cta {
    flex-direction: column;
  }

  .cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:360px) {
  .brand .name {
    font-size: 15px;
  }

  .art {
    height: 180px;
    max-width: 180px;
  }

  .art .icon {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}

/* Accessibility helpers */
.btn:focus,
.nav-link:focus {
  outline: 3px solid rgba(125, 170, 255, 0.14);
  outline-offset: 3px;
  border-radius: 10px;
}