:root {
  --bg: #050b16;
  --bg-2: #091426;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-dark: rgba(4, 10, 22, 0.76);
  --text: #f7fbff;
  --muted: #aebed0;
  --muted-2: #7f91a8;
  --line: rgba(255, 255, 255, 0.13);
  --primary: #27c6ff;
  --primary-2: #1266ff;
  --accent: #22e6a8;
  --violet: #8067ff;
  --gold: #ffd166;
  --danger: #ff5d7a;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --container: 1400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% -5%, rgba(39, 198, 255, 0.32), transparent 28rem),
    radial-gradient(circle at 86% 2%, rgba(128, 103, 255, 0.28), transparent 34rem),
    radial-gradient(circle at 70% 45%, rgba(34, 230, 168, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, #040914 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.035), transparent 18%, transparent 82%, rgba(255,255,255,0.025));
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-spacing {
  padding: 92px 0;
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  top: 13%;
  left: -130px;
  background: var(--primary);
}

.page-glow-two {
  right: -120px;
  bottom: 4%;
  background: var(--violet);
}

.topbar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.topbar a:hover,
.topbar-link {
  color: #ffffff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 22, 0.76);
  backdrop-filter: blur(22px);
}

.navbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-symbol {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #04101f;
  font-weight: 950;
  font-size: 1.2rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.25)),
    linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 38px rgba(39, 198, 255, 0.22);
}

.brand-text {
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  transition: 0.24s ease;
}

.nav-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(135deg, var(--primary), var(--primary-2) 52%, var(--violet));
  box-shadow: 0 20px 45px rgba(39, 198, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 24px 58px rgba(39, 198, 255, 0.32);
}

.btn-secondary,
.btn-outline {
  color: #ffffff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.075);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.115);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-light {
  color: #04101f;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.24s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bbf6ff;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow {
  padding: 10px 14px;
  border: 1px solid rgba(39, 198, 255, 0.28);
  border-radius: 999px;
  background: rgba(39, 198, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(34, 230, 168, 0.13);
}

.hero h1,
.section-heading h2,
.structure-content h2,
.resources-header h2,
.trust-content h2,
.cta-card h2 {
  color: #ffffff;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  margin-top: 20px;
  font-size: clamp(2rem, 3.65vw, 3.85rem);
  line-height: 1.05;
}

.hero-description {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 38px;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.hero-proof strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.045em;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-showcase {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.premium-player-card {
  position: relative;
  width: min(100%, 470px);
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 255, 255, 0.22), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.065));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.premium-player-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 41px;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), transparent 24%, transparent 76%, rgba(39,198,255,0.2));
}

.player-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -86px;
  top: -86px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(39, 198, 255, 0.35), rgba(128, 103, 255, 0.12) 58%, transparent 70%);
  filter: blur(3px);
}

.player-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-badge,
.quality-badge,
.popular-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-badge {
  gap: 8px;
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.status-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(255, 93, 122, 0.12);
}

.quality-badge {
  padding: 9px 12px;
  color: #07111f;
  background: var(--accent);
}

.album-art {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  margin: 46px auto 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,255,255,0.26), transparent 32%),
    conic-gradient(from 180deg, var(--primary), var(--accent), var(--violet), var(--primary));
  box-shadow: 0 24px 80px rgba(39, 198, 255, 0.22);
  animation: slow-spin 16s linear infinite;
}

.album-ring {
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(3, 9, 20, 0.74);
}

.album-center {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #04101f;
  font-weight: 950;
  letter-spacing: -0.06em;
  background: #ffffff;
  box-shadow: inset 0 0 0 12px rgba(39, 198, 255, 0.12);
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.track-info {
  position: relative;
  z-index: 1;
  text-align: center;
}

.track-info span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.track-info h2 {
  margin-top: 8px;
  font-size: 1.38rem;
  letter-spacing: -0.035em;
}

.track-info p {
  max-width: 330px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.audio-wave {
  position: relative;
  z-index: 1;
  height: 62px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.audio-wave span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, var(--primary));
  animation: wave 1.1s ease-in-out infinite alternate;
}

.audio-wave span:nth-child(1) { height: 22px; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 44px; animation-delay: 0.08s; }
.audio-wave span:nth-child(3) { height: 32px; animation-delay: 0.16s; }
.audio-wave span:nth-child(4) { height: 56px; animation-delay: 0.24s; }
.audio-wave span:nth-child(5) { height: 38px; animation-delay: 0.32s; }
.audio-wave span:nth-child(6) { height: 52px; animation-delay: 0.4s; }
.audio-wave span:nth-child(7) { height: 26px; animation-delay: 0.48s; }
.audio-wave span:nth-child(8) { height: 42px; animation-delay: 0.56s; }

@keyframes wave {
  from { transform: scaleY(0.45); opacity: 0.68; }
  to { transform: scaleY(1); opacity: 1; }
}

.player-controls {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.player-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.player-controls .play-button {
  width: 64px;
  height: 64px;
  color: #04101f;
  border: 0;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.18);
}

.floating-card {
  position: absolute;
  width: 205px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 12, 25, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.floating-card strong {
  display: block;
  font-size: 1.06rem;
  letter-spacing: -0.035em;
}

.floating-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.floating-card-top {
  right: 0;
  top: 82px;
}

.floating-card-bottom {
  left: 0;
  bottom: 86px;
}

.brands-strip {
  padding: 18px 0;
}

.brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.brands-inner span {
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent);
}

.brands-inner strong {
  color: #ffffff;
  font-size: 0.96rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.structure-content h2,
.resources-header h2,
.trust-content h2,
.cta-card h2 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.section-heading p,
.structure-content > p,
.trust-content p,
.cta-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

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

.service-card,
.pricing-card,
.resource-card,
.trust-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.service-card:hover,
.pricing-card:hover,
.resource-card:hover,
.trust-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 198, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
}

.service-card {
  min-height: 370px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.service-card::before,
.pricing-card::before,
.resource-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(39, 198, 255, 0.14), transparent 18rem);
  pointer-events: none;
}

.featured-service {
  border-color: rgba(34, 230, 168, 0.28);
  background:
    radial-gradient(circle at top, rgba(34, 230, 168, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
}

.service-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 3.6rem;
  font-weight: 950;
  letter-spacing: -0.09em;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  margin-bottom: 30px;
  font-size: 1.7rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.service-card h3,
.pricing-card h3,
.resource-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.service-card p,
.pricing-card p,
.resource-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: auto;
  color: #ffffff;
  font-weight: 900;
}

.structure-section {
  position: relative;
}

.structure-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.dashboard-preview {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 44px;
  padding: 26px;
  background:
    radial-gradient(circle at top left, rgba(39, 198, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(5, 12, 25, 0.62);
  backdrop-filter: blur(18px);
}

.main-panel {
  padding: 26px;
}

.dashboard-panel small,
.dashboard-row small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.dashboard-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 2.8rem;
  letter-spacing: -0.065em;
}

.mini-chart {
  height: 122px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 20px;
}

.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.mini-chart span:nth-child(1) { height: 42%; }
.mini-chart span:nth-child(2) { height: 72%; }
.mini-chart span:nth-child(3) { height: 52%; }
.mini-chart span:nth-child(4) { height: 92%; }
.mini-chart span:nth-child(5) { height: 64%; }

.dashboard-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.row-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.dashboard-row strong {
  display: block;
  letter-spacing: -0.025em;
}

.dashboard-row em {
  color: var(--accent);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-list span {
  width: 52px;
  height: 52px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #04101f;
  background: var(--accent);
  font-weight: 950;
}

.feature-list strong {
  font-size: 1.08rem;
  letter-spacing: -0.035em;
}

.feature-list p {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  padding: 30px;
}

.pricing-featured {
  transform: translateY(-16px);
  border-color: rgba(39, 198, 255, 0.42);
  background:
    radial-gradient(circle at top, rgba(39, 198, 255, 0.22), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06));
}

.pricing-featured:hover {
  transform: translateY(-22px);
}

.popular-tag {
  width: fit-content;
  padding: 9px 12px;
  margin-bottom: 18px;
  color: #04101f;
  background: var(--gold);
}

.plan-top span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.plan-top h3 {
  margin-top: 8px;
  font-size: 1.28rem;
}

.price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 26px 0 22px;
}

.price small {
  padding-top: 11px;
  color: var(--muted);
  font-weight: 850;
}

.price strong {
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price span {
  align-self: flex-end;
  color: var(--muted);
  font-weight: 800;
}

.pricing-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 950;
}

.pricing-card .btn {
  width: 100%;
}

.resources-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025), transparent);
}

.resources-header {
  max-width: 810px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.resource-card {
  min-height: 280px;
  padding: 26px;
}

.resource-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.09);
  font-size: 1.5rem;
}

.trust-section {
  padding-top: 72px;
}

.trust-cards {
  display: grid;
  gap: 14px;
}

.trust-card {
  padding: 24px;
  border-radius: 26px;
}

.trust-card strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

.trust-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  padding: 78px 0 98px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px;
  background:
    radial-gradient(circle at 15% 0%, rgba(34, 230, 168, 0.34), transparent 26rem),
    radial-gradient(circle at 90% 20%, rgba(39, 198, 255, 0.32), transparent 28rem),
    linear-gradient(135deg, rgba(39, 198, 255, 0.18), rgba(128, 103, 255, 0.2));
  box-shadow: var(--shadow);
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: -110px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card div {
  max-width: 760px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 7, 15, 0.64);
  backdrop-filter: blur(18px);
  padding: 68px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer p {
  max-width: 450px;
  color: var(--muted);
  line-height: 1.72;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer a:not(.brand):hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: #04130c;
  font-weight: 900;
  background: linear-gradient(135deg, #25d366, #9dffbf);
  box-shadow: 0 22px 58px rgba(37, 211, 102, 0.28);
}

.reveal-up {
  animation: reveal-up 0.7s ease both;
}

.delay-1 { animation-delay: 0.09s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.27s; }

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .nav-cta {
    display: none;
  }

  .hero-grid,
  .structure-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 560px;
  }

  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section-spacing {
    padding: 72px 0;
  }

  .topbar-inner {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-contact {
    gap: 10px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 11, 22, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    width: 100%;
    min-height: 46px;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-featured,
  .pricing-featured:hover {
    transform: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 14px;
  }

  .hero-showcase {
    display: block;
    min-height: auto;
  }

  .premium-player-card {
    margin-inline: auto;
  }

  .cta-card,
  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-card {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .navbar-inner {
    min-height: 72px;
  }

  .brand-symbol {
    width: 43px;
    height: 43px;
    border-radius: 15px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.55rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-card .btn {
    width: 100%;
  }

  .premium-player-card {
    min-height: auto;
    border-radius: 30px;
    padding: 20px;
  }

  .album-art {
    width: 210px;
    height: 210px;
    margin: 34px auto 28px;
  }

  .brands-inner {
    justify-content: flex-start;
    border-radius: 26px;
    padding: 18px;
  }

  .dashboard-preview,
  .cta-card {
    border-radius: 30px;
    padding: 22px;
  }

  .dashboard-row {
    grid-template-columns: 44px 1fr;
  }

  .dashboard-row em {
    grid-column: 2;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }

  .feature-list span {
    grid-row: auto;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
