:root {
  --bg: #0c0d11;
  --bg-soft: #12141a;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --text: #f5f1e8;
  --muted: #b8b2a6;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #754390;
  --accent-2: #8f6bff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143, 107, 255, 0.13), transparent 26%),
    radial-gradient(circle at top right, rgba(217, 168, 108, 0.11), transparent 24%),
    linear-gradient(180deg, #090a0d 0%, #101219 42%, #0b0c10 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 24px;
}
/* TOPBAR */

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(100%, var(--container));
  margin: 0 auto 24px;
  padding: 12px 16px;
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 12, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  min-width: 46px;
  max-width: 46px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}
/* CUSTOM MUSIC PLAYER */

.music-player {
  padding: 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.player-label,
.player-count {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.player-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 26px;
}

.play-button,
.player-arrow {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  transition: 0.25s ease;
}

.play-button {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  font-size: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.play-icon {
  transform: translateX(3px);
}

.player-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.play-button:hover,
.player-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(217,168,108,0.7);
  box-shadow: 0 0 0 4px rgba(217,168,108,0.08);
}

.player-info {
  text-align: center;
}

.player-info h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.player-info p {
  margin: 0;
  color: var(--muted);
}

.player-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.progress-line {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

#progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #f0c48f);
}

.music-player.is-playing .play-button {
  border-color: rgba(217,168,108,0.85);
  background: rgba(217,168,108,0.12);
}

@media (max-width: 720px) {
  .music-player {
    min-height: 280px;
    padding: 22px;
  }

  .play-button {
    width: 78px;
    height: 78px;
    font-size: 1.7rem;
  }

  .player-arrow {
    width: 40px;
    height: 40px;
  }

  .player-info h3 {
    font-size: 1.7rem;
  }

  .player-progress {
    margin-top: 20px;
  }
}
.brand-logo img,
.topbar .brand img {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.brand-text {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-cta,
.btn {
  border: 1px solid var(--line);
  transition: 0.25s ease;
}

.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-cta:hover,
.btn:hover,
.link-card:hover,
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
}

/* GLOBAL SECTION */

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  font-family: "Syne", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0;
}

.accent {
  color: var(--accent);
}

/* HERO */

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 46px;
  padding-top: 28px;
}

.hero-text,
.intro-card p,
.service-card p,
.link-card p,
.contact-copy p {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0c48f);
  color: #121212;
  border-color: transparent;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.visual-frame,
.intro-card,
.service-card,
.proof-panel,
.link-card,
.contact-form {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.visual-frame {
  overflow: hidden;
  min-height: 580px;
  border-radius: var(--radius-xl);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(11, 12, 16, 0.76));
}

.visual-frame img {
  height: 100%;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8, 9, 12, 0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
}

.badge-top {
  top: 18px;
  left: 18px;
}

.badge-bottom {
  right: 18px;
  bottom: 18px;
}

/* LINKS */

.links {
  max-width: 980px;
}

.links .section-heading {
  margin-bottom: 22px;
}

.links h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.intro-grid,
.service-grid,
.link-grid,
.proof-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.link-grid.clean-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.link-card {
  min-height: 118px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
  transition: 0.3s ease;
}

.link-card .link-label {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.link-card strong {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.05;
}

.link-card p {
  display: none;
}

/* ABOUT */

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.intro-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.intro-card p {
  margin: 0;
}

/* SERVICES */

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: 0.3s ease;
}

.service-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
}

/* PROOF */

.proof-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proof-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.proof-panel h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.bullet-list {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 10px;
}

.proof-image {
  overflow: hidden;
  padding: 0;
}

.proof-image img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* CONTACT */

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-copy {
  padding-right: 20px;
}

.direct-email {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.05rem;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #e8dfd0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 144px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(217, 168, 108, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 168, 108, 0.12);
}

.form-btn {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FOOTER */

.footer {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 16px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */

@media (max-width: 1100px) {
  .hero,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .service-grid,
  .link-grid.clean-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .visual-frame {
    min-height: 520px;
  }

  .contact-copy {
    padding-right: 0;
  }
}

/* MOBILE */

@media (max-width: 720px) {
  .site-shell {
    padding: 10px;
  }

  .topbar {
    top: 8px;
    padding: 10px;
    margin-bottom: 14px;
  }

  .brand-logo,
  .brand-logo img,
  .topbar .brand img {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
  }

  .brand-text {
    display: none;
  }

  .top-cta {
    padding: 12px 18px;
    font-size: 0.76rem;
  }

  .section {
    padding: 46px 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 18px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero-text {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin: 22px 0 0;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .visual-frame {
    min-height: 330px;
    border-radius: 26px;
  }

  .visual-badge {
    font-size: 0.6rem;
    padding: 9px 12px;
  }

  .intro-grid,
  .service-grid,
  .link-grid.clean-links,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .link-grid.clean-links {
    gap: 10px;
  }

  .link-card {
    min-height: 92px;
    padding: 16px;
  }

  .link-card strong {
    font-size: 1.08rem;
  }

  .link-card .link-label {
    font-size: 0.56rem;
    margin-bottom: 7px;
  }

  .intro-card,
  .service-card,
  .proof-panel,
  .contact-form {
    padding: 18px;
  }

  .proof-image img {
    min-height: 240px;
  }

  .footer {
    flex-direction: column;
  }
  
}