:root {
  --ml-primary: #0b4f8c;
  --ml-primary-dark: #07345c;
  --ml-accent: #ff8b2d;
  --ml-slate: #1f2937;
  --ml-muted: #5b6472;
  --ml-surface: #f7f9fc;
}

body {
  color: var(--ml-slate);
  background-color: #ffffff;
}

.navbar-brand img.brand-logo {
  height: 52px;
  width: auto;
}

.brand-wrap {
  gap: 0.55rem;
}

.brand-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ml-primary-dark);
  white-space: nowrap;
}

@media (max-width: 576px) {
  .navbar-brand img.brand-logo {
    height: 42px;
  }

  .brand-tagline {
    font-size: 0.78rem;
  }
}

.hero {
  background: linear-gradient(120deg, #072b4a 0%, var(--ml-primary) 55%, #2f83d0 100%);
  color: #ffffff;
  border-radius: 1rem;
}

.hero-main-tagline {
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-subheading {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 58ch;
}

.hero-soft {
  background: linear-gradient(135deg, #edf6ff 0%, #ffffff 45%, #fff4ea 100%);
  border-radius: 1rem;
}

.section-title {
  letter-spacing: 0.03em;
}

.page-header {
  background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 65%);
  border: 1px solid #e8eef6;
  border-radius: 1rem;
}

.feature-card,
.service-card,
.product-card {
  height: 100%;
  border: 1px solid #e6ebf2;
  border-radius: 0.9rem;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 79, 140, 0.12);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: var(--ml-primary);
}

.product-thumb {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid #dfe7f2;
}

.striped-band {
  background: repeating-linear-gradient(
    -45deg,
    #f7f9fc,
    #f7f9fc 14px,
    #eef3fa 14px,
    #eef3fa 28px
  );
  border-radius: 1rem;
}

.listenlater-card-top {
  background: linear-gradient(140deg, #071f37 0%, var(--ml-primary) 58%, #ff8b2d 145%);
  color: #ffffff;
}

.listenlater-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.listenlater-home-logo {
  display: block;
  width: 100%;
  max-width: 110px;
  height: auto;
}

.listenlater-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.listenlater-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  min-height: 100%;
  border-radius: 1rem;
  background: linear-gradient(140deg, #071f37 0%, var(--ml-primary) 58%, #ff8b2d 145%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.listenlater-hero::before {
  content: "";
  position: absolute;
  inset: auto -3rem -5rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(10px);
}

.listenlater-hero > * {
  position: relative;
  z-index: 1;
}

.listenlater-label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.listenlater-hero h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.listenlater-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
}

.listenlater-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.listenlater-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-box {
  background-color: var(--ml-surface);
  border: 1px solid #e1e8f2;
  border-radius: 0.9rem;
}

.footer {
  border-top: 1px solid #e5eaf2;
  color: var(--ml-muted);
}

.brand-tagline-footer {
  font-weight: 600;
  color: var(--ml-primary-dark);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.65;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.legal-content h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.btn-ml {
  background-color: var(--ml-accent);
  border-color: var(--ml-accent);
  color: #1f1307;
}

.btn-ml:hover,
.btn-ml:focus {
  background-color: #e67a1e;
  border-color: #e67a1e;
  color: #1f1307;
}

.badge-soft {
  background-color: #e8f1fc;
  color: var(--ml-primary-dark);
}
