/* Far Above See Level — static site v3 */
:root {
  --bg: #000000;
  --paper: #080b10;
  --ink: #f5f7fa;
  --muted: #b3bdc8;
  --line: rgba(255,255,255,0.16);
  --green: #37d36b;
  --accent: #7eb6ff;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem clamp(1.25rem, 3vw, 3rem);
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.8rem);
  align-items: center;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(7, 31, 51, 0.76);
}

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

.section {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.6rem, 10vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(7, 31, 51, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.hero-card {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(7, 31, 51, 0.24);
  background: var(--ink);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: inherit;
  pointer-events: none;
}

.hero-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.content {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.content strong {
  color: var(--ink);
}

.status {
  margin-top: 1.5rem;
  color: var(--ink);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.card-number {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

.text-link {
  display: inline-block;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.contact {
  text-align: center;
  border-bottom: 0;
}

.contact h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.email-link {
  display: inline-block;
  margin: 0.5rem 0 2rem;
  color: var(--green);
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.socials a {
  padding: 0.55rem 0.8rem;
  color: rgba(7,31,51,0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: rgba(7,31,51,0.55);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.2rem 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.68rem;
  }

  .hero,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
    min-height: auto;
  }

  .hero-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .card {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    padding: 1rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav {
    font-size: 0.62rem;
  }

  .section {
    width: min(100% - 1.5rem, var(--max));
    padding: 3.2rem 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.hero-card{box-shadow:0 35px 90px rgba(0,0,0,.55);}

/* v5 dark fixes */
.site-header {
  background: rgba(0, 0, 0, 0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  background: transparent !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

.hero-card {
  background: transparent !important;
  box-shadow: 0 35px 90px rgba(0,0,0,.62) !important;
  border: 0 !important;
}

.hero-card::after {
  display: none !important;
  border: 0 !important;
}

.card {
  background: #070a0f !important;
  border-color: rgba(255,255,255,0.18) !important;
}

.socials a {
  color: #82b7ff !important;
  border-color: rgba(126,182,255,0.55) !important;
  background: rgba(126,182,255,0.06) !important;
}

.socials a:hover {
  color: #ffffff !important;
  border-color: rgba(126,182,255,0.9) !important;
}

.site-footer {
  color: rgba(245,247,250,0.72) !important;
  border-top: 1px solid rgba(255,255,255,0.16) !important;
}

.text-link,
.email-link {
  color: #82b7ff !important;
}

.nav a {
  color: rgba(245,247,250,0.78) !important;
}

.nav a:hover {
  color: #ffffff !important;
}


/* v6 layout/text updates */
.logo-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(500px, 55vw, 700px);
  background: #000 !important;
  box-shadow: none !important;
}

.logo-hero img {
  width: min(80%, 500px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.section-cover {
  width: min(100%, 390px);
  border-radius: 1.1rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 26px 70px rgba(0,0,0,0.55);
}

.section-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.music-section {
  align-items: center;
}

@media (max-width: 860px) {
  .logo-hero {
    min-height: 320px;
  }

  .logo-hero img {
    width: min(42%, 220px);
  }

  .section-cover {
    max-width: 460px;
  }
}
