:root{
  --teal-900:#0b2f31;
  --teal-700:#0f3d3f;
  --teal-500:#1d6e73;

  --sand:#f1d7a7;
  --cream:#f7e6c8;

  --orange-700:#c65b22;
  --orange-500:#e07a2c;

  --ink:#0b1415;
  --muted: rgba(247, 230, 200, .75);

  --radius: 22px;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --stroke: 3px solid rgba(11,20,21,.75);
  --stroke-soft: 2px solid rgba(11,20,21,.45);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 700px at 20% 80%, rgba(29,110,115,.35), transparent 60%),
              radial-gradient(1000px 600px at 80% 20%, rgba(224,122,44,.35), transparent 55%),
              linear-gradient(120deg, var(--teal-900), #0a2224 45%, #2a1712 100%);
  overflow-x:hidden;
}

.wrap{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

.bg{
  position:fixed;
  inset:0;
  background:
    linear-gradient(120deg, rgba(11,47,49,.85), rgba(11,47,49,.55) 45%, rgba(42,23,18,.75)),
    url("../assets/bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  opacity:.28;
  pointer-events:none;
  z-index:-3;
}

.grain{
  position:fixed;
  inset:-40%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity:.08;
  mix-blend-mode:overlay;
  pointer-events:none;
  z-index:-2;
  transform: rotate(7deg);
}

.top{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(11,47,49,.75), rgba(11,47,49,.35));
  border-bottom: 1px solid rgba(247,230,200,.14);
}

.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

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

.brand__logo{
  width:64px;
  height:auto;
  border-radius:14px;
  border: var(--stroke-soft);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  background: rgba(0,0,0,.15);
}

.brand__title{
  font-size:20px;
  font-weight:900;
  letter-spacing:.2px;
}
.brand__sub{
  font-size:13px;
  color: var(--muted);
  margin-top:2px;
}

.nav{ display:flex; gap:14px; }
.nav__link{
  color: rgba(247,230,200,.9);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  padding:10px 12px;
  border-radius:14px;
}
.nav__link:hover{
  background: rgba(247,230,200,.10);
}

.hero{ padding:34px 0 20px; }
.hero__card h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.5px;
}
.hero__card p{
  margin:0 0 18px;
  color: rgba(247,230,200,.85);
  max-width: 70ch;
}

.section{ padding: 28px 0; }
.section__title{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing:.2px;
}

.sticker{
  position:relative;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247,230,200,.12), rgba(247,230,200,.08)),
    radial-gradient(600px 240px at 20% 0%, rgba(224,122,44,.18), transparent 60%),
    radial-gradient(500px 220px at 90% 10%, rgba(29,110,115,.22), transparent 55%),
    rgba(7,18,19,.55);
  border: var(--stroke-soft);
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.sticker::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: calc(var(--radius) + 2px);
  border: 2px solid rgba(241,215,167,.35);
  pointer-events:none;
}

.controls{
  display:grid;
  grid-template-columns: 1.3fr .6fr .6fr;
  gap:12px;
  margin: 10px 0 10px;
}

.field{ display:flex; flex-direction:column; gap:6px; }
.field__label{
  font-size:12px;
  font-weight:800;
  color: rgba(247,230,200,.8);
  letter-spacing:.3px;
}
input, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(247,230,200,.22);
  background: rgba(11,20,21,.55);
  color: var(--cream);
  outline:none;
}
input::placeholder{ color: rgba(247,230,200,.45); }
input:focus, select:focus{
  border-color: rgba(224,122,44,.55);
  box-shadow: 0 0 0 4px rgba(224,122,44,.14);
}

.meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 10px;
  color: rgba(247,230,200,.75);
  font-size:13px;
}
.dot{ opacity:.6; }
.hint{ opacity:.85; }

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 12px 0 6px;
}
.chip{
  border-radius: 999px;
  border: 1px solid rgba(247,230,200,.22);
  background: rgba(0,0,0,.25);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  cursor:pointer;
  user-select:none;
}
.chip:hover{ background: rgba(247,230,200,.10); }
.chip.is-active{
  border-color: rgba(224,122,44,.7);
  box-shadow: 0 0 0 4px rgba(224,122,44,.14);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card{
  grid-column: span 6;
  padding: 16px 16px;
}

.card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.badge{
  font-size:12px;
  font-weight:900;
  color: rgba(11,20,21,.92);
  background: linear-gradient(180deg, var(--sand), rgba(241,215,167,.92));
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 999px;
  padding: 6px 10px;
  white-space:nowrap;
}

.card h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing:.2px;
}
.card p{
  margin: 0 0 10px;
  color: rgba(247,230,200,.82);
  font-size: 14px;
  line-height: 1.35;
}

.tagline{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 10px 0 12px;
}
.tag{
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(247,230,200,.18);
  background: rgba(29,110,115,.14);
}

.player{
  display:flex;
  flex-direction:column;
  gap:10px;
}

audio{
  width:100%;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn, .linkbtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(247,230,200,.22);
  background: rgba(0,0,0,.25);
  color: var(--cream);
  text-decoration:none;
  cursor:pointer;
}
.btn:hover, .linkbtn:hover{
  background: rgba(247,230,200,.10);
  border-color: rgba(247,230,200,.28);
}

.empty{
  margin-top: 16px;
  padding: 18px;
}
.empty h3{ margin:0 0 6px; }
.small{ opacity:.85; }

.footer{
  padding: 26px 0 36px;
  color: rgba(247,230,200,.75);
  font-size: 13px;
}
.footer__inner{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.footer__link{ color: rgba(247,230,200,.85); text-decoration:none; }
.footer__link:hover{ text-decoration:underline; }

@media (max-width: 900px){
  .controls{ grid-template-columns: 1fr; }
  .card{ grid-column: span 12; }
  .hero__card h1{ font-size: 34px; }
}