:root {
  --surface: #031712;
  --surface-dim: #031712;
  --surface-bright: #293d37;
  --surface-lowest: #00110c;
  --surface-low: #0b1f1a;
  --surface-card: #0f231e;
  --surface-card-high: #1a2e28;
  --surface-card-top: #253932;
  --text: #d0e8de;
  --text-soft: #c0c8c3;
  --outline: rgba(208, 232, 222, 0.12);
  --primary: #a0d1bc;
  --primary-strong: #0c3f30;
  --secondary: #ed572b;
  --secondary-soft: #ffb5a0;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1280px;
  --gutter: clamp(20px, 2vw, 32px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Manrope, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(160, 209, 188, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(237, 87, 43, 0.09), transparent 28%),
    linear-gradient(180deg, #041b15 0%, #031712 24%, #04110e 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
  margin: 0 auto;
}

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-panel {
  background: linear-gradient(180deg, rgba(11, 31, 26, 0.92), rgba(0, 17, 12, 0.94));
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
}
.eyebrow.accent { color: var(--secondary-soft); }

h1, h2, h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  line-height: 1.12;
  letter-spacing: -.02em;
}

h1 { font-size: 60px; max-width: 13ch; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 14ch; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
p { margin: 0 0 16px; color: var(--text-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.4rem); max-width: 60ch; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  padding: 10px 0;
  backdrop-filter: blur(18px);
  background: rgba(3, 23, 18, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 0; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo img {
  display: block;
  width: 250px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.site-nav {
  display: flex; align-items: center; gap: 22px;
}
.site-nav a { color: var(--text-soft); transition: color .25s ease, transform .25s ease; position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-soft), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.site-nav a:hover { color: var(--text); transform: translateY(-1px); }
.site-nav a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 14px;
  background: var(--surface-card); color: var(--text);
}
.nav-toggle span { display:block; width:22px; height:2px; background:currentColor; margin:5px auto; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  background: linear-gradient(180deg, #ff815d, var(--secondary));
  color: #210800; font-weight: 800; letter-spacing: .02em;
  box-shadow: 0 18px 40px rgba(181, 48, 1, 0.25);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.button:hover { transform: translateY(-2px) scale(1.01); filter: brightness(1.04); }
.button-small { min-height: 42px; padding: 0 18px; flex: 0 0 auto; }
.button-ghost {
  background: rgba(160, 209, 188, 0.08);
  color: var(--text);
  border: 1px solid rgba(160, 209, 188, 0.18);
  box-shadow: none;
}
.button-light { background: linear-gradient(180deg, #fff0eb, #ffd2c2); }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; overflow: clip;
}
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .34; transform: scale(1.04); }
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(3,23,18,.55) 0%, rgba(3,23,18,.3) 30%, rgba(3,23,18,.82) 100%),
    radial-gradient(circle at center, transparent 10%, rgba(3,23,18,.35) 65%, rgba(3,23,18,.9) 100%);
}
.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-actions, .pill-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions { margin-top: 28px; }

.player-card, .feature-card, .media-card, .track-card, .contact-card, .promo-card {
  position: relative;
  background: linear-gradient(180deg, rgba(26,46,40,.88), rgba(11,31,26,.95));
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}
.player-card,
.contact-card,
.promo-card,
.media-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.player-card:hover,
.contact-card:hover,
.promo-card:hover,
.media-card:hover {
  transform: translateY(-8px);
  border-color: rgba(160,209,188,.22);
  box-shadow: 0 36px 90px rgba(0,0,0,.42);
}
.player-card {
  padding: 28px; border-radius: 32px; overflow: hidden;
}
.player-card::before, .promo-card::before {
  content: ""; position: absolute; inset: auto -60px -60px auto; width: 180px; height: 180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(237,87,43,.24), transparent 70%);
}
.player-meta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: none; }
.player-controls { display: flex; align-items: center; justify-content: flex-start; gap: 18px; margin: 26px 0 8px; flex-wrap: nowrap; }
.player-live-meter {
  display: inline-flex;
  align-items: end;
  gap: 4px;
  width: 144px;
  height: 30px;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.player-live-meter span {
  width: 10px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8fff0, var(--primary), var(--secondary));
  box-shadow: 0 0 12px rgba(160,209,188,.18);
  animation: meterPulse 1.1s ease-in-out infinite;
}
.player-live-meter span:nth-child(2) { animation-delay: .12s; }
.player-live-meter span:nth-child(3) { animation-delay: .24s; }
.player-live-meter span:nth-child(4) { animation-delay: .36s; }
.player-live-meter span:nth-child(5) { animation-delay: .48s; }
.player-live-meter span:nth-child(6) { animation-delay: .60s; }
.player-live-meter span:nth-child(7) { animation-delay: .72s; }
.player-live-meter span:nth-child(8) { animation-delay: .84s; }
.player-live-meter span:nth-child(9) { animation-delay: .96s; }
.player-live-meter span:nth-child(10) { animation-delay: 1.08s; }
.player-live-meter.is-paused span { animation-play-state: paused; transform: scaleY(.28); opacity: .45; }
.play-button {
  width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%; border: 0;
  background: linear-gradient(180deg, #ff8f70, #d94920);
  color: white; display:flex; align-items:center; justify-content:center;
  box-shadow: inset 0 2px 10px rgba(255,255,255,.14), 0 14px 30px rgba(217,73,32,.35);
  cursor: pointer; transition: transform .25s ease;
  position: relative;
}
.play-button:hover { transform: scale(1.05); }
.play-button svg { width: 32px; fill: currentColor; position: absolute; }
.play-button .icon-pause { opacity: 0; }
.play-button.is-playing .icon-play { opacity: 0; }
.play-button.is-playing .icon-pause { opacity: 1; }
.player-progress { display: none; }
.meter-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 44px;
  padding: 0 4px;
}
.meter-bars span {
  flex: 1;
  min-width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: .9;
  transform-origin: bottom;
  animation: meterPulse 1.1s ease-in-out infinite;
}
.meter-bars span:nth-child(2) { animation-delay: .08s; }
.meter-bars span:nth-child(3) { animation-delay: .16s; }
.meter-bars span:nth-child(4) { animation-delay: .24s; }
.meter-bars span:nth-child(5) { animation-delay: .32s; }
.meter-bars span:nth-child(6) { animation-delay: .4s; }
.meter-bars span:nth-child(7) { animation-delay: .48s; }
.meter-bars span:nth-child(8) { animation-delay: .56s; }
.player-meter.is-paused .meter-bars span { animation-play-state: paused; transform: scaleY(.28); opacity: .45; }
.pill-row span {
  padding: 10px 14px; border-radius: 999px; font-size: .9rem;
  border: 1px solid rgba(160,209,188,.14); background: rgba(160,209,188,.08);
}
@keyframes meterPulse {
  0%, 100% { transform: scaleY(.25); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.ticker-wrap {
  overflow: hidden; border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(0, 17, 12, .6);
}
.ticker {
  display: flex; gap: 100px; padding: 18px 0; white-space: nowrap; width: max-content;
  animation: ticker-loop 24s linear infinite;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.ticker:hover { animation-play-state: paused; }
.ticker span {
  color: var(--text-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .83rem;
  flex: 0 0 auto;
}
@keyframes ticker-loop { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.section-head { margin-bottom: 40px; max-width: 760px; }
.row-between { display:flex; justify-content:space-between; align-items:end; gap:24px; max-width:none; }
.inline-link { color: var(--secondary-soft); font-weight: 700; }
.card-grid.cards-3 { display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  padding: 30px; border-radius: var(--radius-lg);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(160,209,188,.25); }
.feature-card:hover .icon-box { transform: scale(1.08) rotate(-4deg); }
.icon-box {
  width: 62px; height: 62px; border-radius: 18px; display:grid; place-items:center;
  background: linear-gradient(180deg, rgba(160,209,188,.14), rgba(160,209,188,.06)); margin-bottom: 20px;
  transition: transform .3s ease, background .3s ease;
}
.icon-box svg { width: 30px; height: 30px; fill: var(--primary); }
.icon-box i {
  font-size: 28px;
  color: var(--primary);
}
.icon-box-image {
  width: 62px;
  height: 62px;
  padding: 10px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(160,209,188,.14), rgba(160,209,188,.06));
  border-radius: 18px;
  overflow: hidden;
}
.icon-box-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .8;
}

.split-layout {
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 58px); align-items:center;
}
.split-layout-wide { grid-template-columns: .95fr 1.05fr; }
.media-card {
  border-radius: 34px; overflow:hidden; min-height: 420px;
}
.media-card img { width:100%; height:100%; object-fit:cover; }
.floating-card { transform: perspective(1200px) rotateY(-8deg) rotateX(2deg); }
.video-promo { min-height: 360px; }
.video-poster {
  padding: 0;
  min-height: 420px;
  height: 100%;
  background: transparent;
}
.video-poster img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease, filter .45s ease;
}
.video-poster:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.video-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,23,18,.15), rgba(3,23,18,.6));
}
.video-trigger {
  position:absolute; inset:auto auto 30px 30px; width:88px; height:88px; border:0; cursor:pointer;
  border-radius:50%; background: rgba(255,255,255,.12); backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.video-trigger-centered {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 102px;
  height: 102px;
}
.video-poster:hover .video-trigger-centered {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  transform: translate(-42%, -50%);
  border-left: 24px solid white;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.video-trigger.pulse { animation: pulse 1.4s ease-out 1; }
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.18); }
  70% { transform: scale(1.06); box-shadow: 0 0 0 22px rgba(255,255,255,0); }
  100% { transform: scale(1); }
}
.video-modal[hidden] { display: none; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1080px);
  background: linear-gradient(180deg, rgba(26,46,40,.96), rgba(11,31,26,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.video-modal-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
}
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
}
body.modal-open { overflow: hidden; }

.check-list { list-style:none; padding:0; margin:30px 0 0; display:grid; gap:14px; }
.check-list li {
  position:relative; padding-left:34px; color: var(--text);
}
.check-list li::before {
  content:""; position:absolute; left:0; top:.48em; width:14px; height:14px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--secondary));
}

.track-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.track-card {
  border-radius: 26px; overflow:hidden; transition: transform .35s ease, opacity .35s ease;
}
.track-card:hover { transform: translateY(-8px) rotate(-1deg); }
.track-card:hover img { transform: scale(1.04); }
.track-card img { transition: transform .35s ease; }
.track-card img { width:100%; aspect-ratio: 4/4.2; object-fit: cover; }
.track-card div { padding: 18px 18px 22px; }
.track-card h3 { margin-bottom: 8px; font-size: 1.4rem; }
.track-card span { color: var(--primary); font-weight: 700; font-size: .92rem; }
.track-grid.is-refreshing .track-card { opacity: .2; transform: translateY(10px); }
.track-card.is-entering { animation: cardBounce .72s cubic-bezier(.2,.8,.2,1); }
.track-card.is-entering:nth-child(1) { animation-delay: .08s; }
.track-card.is-entering:nth-child(2) { animation-delay: .22s; }
.track-card.is-entering:nth-child(3) { animation-delay: .36s; }
.track-card.is-entering:nth-child(4) { animation-delay: .5s; }
@keyframes cardBounce {
  0% { opacity: 0; transform: translateY(22px) scale(.96); }
  55% { opacity: 1; transform: translateY(-8px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: start; }
.contact-card, .promo-card { padding: 34px; border-radius: 34px; }
.contact-form { display:grid; gap: 18px; }
.contact-form label span { display:block; margin-bottom:8px; color: var(--text); font-weight: 600; }
.contact-form input, .contact-form textarea {
  width:100%; border:1px solid rgba(255,255,255,.05); outline:none;
  background: rgba(0,17,12,.85); color: var(--text);
  border-radius: 18px; padding: 16px 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(237,87,43,.65); box-shadow: 0 0 0 3px rgba(237,87,43,.12); }
.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  font-size: .96rem;
  color: var(--text-soft);
}
.form-status.is-success { color: #d8fff0; }
.form-status.is-error { color: #ffd2c2; }
.contact-form button[disabled] {
  opacity: .7;
  cursor: wait;
  pointer-events: none;
}
.contact-points { list-style:none; padding:0; margin: 20px 0 26px; display:grid; gap: 10px; }
.contact-points li { color: #fff; font-size: 1.08rem; }

.site-footer {
  padding-top: 48px; background: linear-gradient(180deg, rgba(0,17,12,.85), rgba(0,10,7,.96)); border-top: 1px solid rgba(255,255,255,.04);
}
.footer-grid {
  display:grid; grid-template-columns: 1.2fr .8fr .7fr; gap: 30px; padding-bottom: 28px;
}
.footer-grid h3 { font-size: 1.2rem; margin-bottom: 14px; }
.footer-grid ul { list-style:none; padding:0; margin:0; display:grid; gap: 8px; color: var(--text-soft); }
.social-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--text); font-weight: 800; }
.social-link svg { width: 16px; height: 16px; fill: currentColor; color: #D1E8DE; flex: 0 0 16px; }
.social-link:hover { color: var(--secondary-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding: 22px 0 34px; text-align: center; }
.footer-bottom p { margin:0; font-size: .92rem; }
.footer-bottom p + p { margin-top: 8px; }
.footer-bottom a { color: var(--secondary-soft); font-weight: 800; }
.footer-bottom a:hover { color: var(--text); }
.footer-heart { color: #ff6b81; }
.footer-brand { margin-bottom: 18px; }
.footer-brand img {
  width: 230px;
  height: auto;
  max-width: 100%;
}

.reveal {
  opacity: 0; transform: translateY(28px) scale(.985);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-up { transform: translateY(34px) scale(.985); }
.reveal-right { transform: translateX(34px) scale(.985); }
.reveal-left { transform: translateX(-34px) scale(.985); }
.reveal-zoom { transform: scale(.9); }
.reveal.in-view { opacity: 1; transform: translate(0, 0) scale(1); }

@media (max-width: 1080px) {
  .hero-grid, .split-layout, .split-layout-wide, .contact-grid, .track-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid.cards-3 { grid-template-columns: repeat(2, 1fr); }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); left: var(--gutter); right: var(--gutter);
    display: none; flex-direction: column; align-items: stretch; padding: 18px;
    border-radius: 24px; background: rgba(11,31,26,.96); border:1px solid var(--outline);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-grid, .split-layout, .split-layout-wide, .contact-grid, .track-grid, .card-grid.cards-3, .footer-grid {
    grid-template-columns: 1fr;
  }
  .row-between { display:block; }
  .floating-card { transform: none; }
  .hero { min-height: auto; padding-top: 40px; }
  h1 { font-size: clamp(2.7rem, 12vw, 60px); max-width: 11ch; }
  .brand-logo img { width: min(230px, 58vw); height: auto; }
  .footer-brand img { width: min(230px, 58vw); height: auto; }
  .player-controls { flex-wrap: wrap; }
  .player-progress { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .button, .feature-card, .track-card, .play-button { transition: none; animation: none; }
  .ticker { transition: none; }
}
