:root {
  --accent-blue: #2838b2;
  --nav-height: 72px;
  --color-accent: rgba(255, 255, 255, 0.08);
  --color-bg: #0b0d10;
  --color-bg-secondary: #121620;
  --color-text: #f2f4f8;
  --color-text-secondary: rgba(242, 244, 248, 0.72);
  --color-link: var(--accent-blue);
  --width-content: 1180px;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --line-height: 1.65;
  --font-family: "Supermercado One", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: var(--line-height);
  background: #000;
}

body:not(.site-hidden):not(.intro-active):not(.cmd-active) {
  background:
    radial-gradient(1100px 700px at 50% 10%, rgba(0, 0, 0, 0.55), transparent 55%),
    radial-gradient(1200px 700px at 10% 0%, rgba(40, 56, 178, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(40, 56, 178, 0.14), transparent 60%),
    url("images/aurora.jpg") center / cover no-repeat fixed,
    var(--color-bg);
}

html {
  scroll-behavior: smooth;
}

main > section,
header {
  scroll-margin-top: var(--nav-height);
}

main > section {
  min-height: auto;
  display: block;
  padding: 0;
}

#music {
  display: block;
  padding: 0;
  margin: 0;
}

.srcl-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(242, 244, 248, 0.16);
  margin: 10px auto 0;
  width: min(var(--width-content), calc(100% - 24px));
  box-sizing: border-box;
}

.srcl-nav a,
.srcl-nav a:visited,
.srcl-nav a:hover,
.srcl-nav a:active {
  color: rgba(242, 244, 248, 0.9);
  text-decoration: none;
}

.srcl-nav ul a,
.srcl-nav ul a:visited {
  font-family: "Supermercado One", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
  padding: 8px 12px;
  transition: box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.srcl-nav ul a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.7), 0 12px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}

.srcl-nav ul a:focus-visible {
  outline: none;
  background-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.85), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.srcl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  gap: 14px;
}

.srcl-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0 auto;
  padding: 0;
  justify-content: flex-end;
}

.srcl-nav-links li {
  margin: 0;
  padding: 0;
}

footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 26px 0 18px;
  background: rgba(11, 13, 16, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  gap: 14px;
}

footer small {
  color: rgba(242, 244, 248, 0.78);
}

nav a strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand:hover,
.brand:focus,
.brand:focus-visible,
.brand:active {
  background: transparent;
  box-shadow: none;
  transform: none;
  opacity: 1;
}

.brand-name {
  font-family: "Bebas Neue", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

header {
  padding-top: 72px;
  padding-bottom: 44px;
}

header h1 {
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

header p {
  max-width: 70ch;
}

.grid-2 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.music-embeds {
  width: 100%;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.music-embeds .card {
  padding: 12px;
  border-radius: 0;
  border: 1px solid rgba(242, 244, 248, 0.16);
  background: rgba(0, 0, 0, 0.35);
}

#music .srcl-shell,
#music .srcl-shell-tight {
  margin: 0;
}

@media (max-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 22, 32, 0.85);
  padding: 22px;
  border-radius: 14px;
}

main section.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: start;
  padding: 16px;
  margin: 0;
  border-radius: 0;
  border: 1px solid rgba(242, 244, 248, 0.16);
  background: rgba(0, 0, 0, 0.35);
}

main section.srcl-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 16px;
  margin: 0;
  border-radius: 0;
  border: 1px solid rgba(242, 244, 248, 0.16);
  background: rgba(0, 0, 0, 0.35);
}

.srcl-shell-tight {
  gap: 14px;
  padding: 12px;
}

#music main section.srcl-shell,
main #music section.srcl-shell {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 900px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

.contact-kicker {
  color: rgba(242, 244, 248, 0.72);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(242, 244, 248, 0.95);
  display: inline-block;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(242, 244, 248, 0.18);
  border-radius: 0;
}

.contact-email {
  margin-top: 12px;
  margin-bottom: 10px;
}

.contact-email a {
  color: rgba(242, 244, 248, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 244, 248, 0.35);
}

.contact-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0 14px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-socials a:hover {
  opacity: 0.9;
}

.contact-socials img {
  width: auto;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.contact-socials a:hover img {
  opacity: 1;
}

.contact-blurb {
  margin: 0;
  color: var(--color-text-secondary);
  max-width: 52ch;
}

.contact-form {
  margin: 0;
}

.srcl-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(242, 244, 248, 0.16);
  background: rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
  width: 100%;
}

.srcl-bar-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.srcl-dot {
  opacity: 0.9;
}

.srcl-title {
  letter-spacing: 0.14em;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(242, 244, 248, 0.92);
}

.srcl-title-lg {
  font-size: 20px;
  letter-spacing: 0.1em;
}

.srcl-bar-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.srcl-key {
  border: 1px solid rgba(242, 244, 248, 0.18);
  background: rgba(0, 0, 0, 0.65);
  padding: 3px 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.srcl-keylabel {
  color: rgba(242, 244, 248, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.contact-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 560px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(242, 244, 248, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(242, 244, 248, 0.95);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(242, 244, 248, 0.35);
  outline-offset: 2px;
}

.contact-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.srcl-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(242, 244, 248, 0.95);
  padding: 8px 10px;
  border: 1px solid rgba(242, 244, 248, 0.16);
  background: rgba(0, 0, 0, 0.35);
}

.srcl-action:hover {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.85), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.srcl-action:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(242, 244, 248, 0.25), 0 0 0 5px rgba(0, 0, 0, 0.85);
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text-secondary);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.intro-active {
  overflow: hidden;
}

body.site-hidden {
  overflow: hidden;
}

body.cmd-active {
  overflow: hidden;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
}

body.intro-leave .intro {
  pointer-events: none;
}

body.site-hidden nav,
body.site-hidden header,
body.site-hidden main,
body.site-hidden footer {
  opacity: 0;
  transform: translateY(6px);
}

body.intro-active nav,
body.intro-active header,
body.intro-active main,
body.intro-active footer {
  opacity: 0;
  transform: translateY(6px);
}

nav,
header,
main,
footer {
  transition: opacity 420ms ease, transform 420ms ease;
}

.cmd {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  color: #f2f2f2;
  display: block;
  opacity: 0;
  pointer-events: none;
}

.cmd.is-on {
  opacity: 1;
  pointer-events: auto;
}

.cmd::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.045) 0px,
      rgba(255,255,255,0.045) 1px,
      rgba(0,0,0,0) 2px,
      rgba(0,0,0,0) 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events: none;
}

.cmd::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.cmd-inner {
  width: 100%;
  min-height: 100%;
  padding: 18px 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.cmd-bar {
  margin: 0 0 14px;
}

.cmd-title {
  color: rgba(242, 242, 242, 0.9);
  margin-bottom: 12px;
}

.cmd-text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.4;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.cmd-cursor {
  display: inline-block;
  width: 9px;
  height: 17px;
  margin-top: 8px;
  background: rgba(242, 242, 242, 0.9);
  animation: cmd-blink 900ms steps(1) infinite;
}

@keyframes cmd-blink {
  50% { opacity: 0; }
}


.intro .intro-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 420ms ease;
}

body.intro-leave .intro .intro-media {
  opacity: 0;
}

.intro .scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 75%,
    rgba(0, 0, 0, 0.9) 100%
  );
}


