/* ==========================================================================
   Instrumental Ringtone — Design Seed 8 (Clean Light / Blue / Cyan)
   Plain CSS. No frameworks, no preprocessors.
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --bg: #090a0d;
  --bg-deep: #060709;
  --surface: #101218;
  --surface-2: #15171f;
  --surface-3: #1c1f29;

  --gold: #2563eb;
  --gold-soft: #06b6d4;
  --gold-deep: #1d4ed8;
  --ivory: #ffffff;

  --text: #e9eaef;
  --text-dim: #a7adba;
  --text-faint: #7b8191;

  --line: rgba(37, 99, 235, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(37, 99, 235, 0.38);

  --ok: #56c288;
  --warn: #e0a33c;
  --err: #e2685f;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 12px 34px rgba(37, 99, 235, 0.14);

  --wrap: 1180px;
  --gutter: 20px;

  --step: 220ms cubic-bezier(0.22, 0.61, 0.36, 1);

  --font: "Poppins", "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui,
    sans-serif;
}

/* 2. Reset / base ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  background-image: radial-gradient(
      900px 480px at 82% -8%,
      rgba(37, 99, 235, 0.08),
      transparent 62%
    ),
    radial-gradient(
      700px 420px at 4% 4%,
      rgba(37, 99, 235, 0.05),
      transparent 60%
    );
  background-attachment: fixed;
}

body.player-open {
  padding-bottom: 108px;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color var(--step);
}

a:hover {
  color: var(--gold);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ivory);
}

h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.028em;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 19px;
}

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

hr {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 32px 0;
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(37, 99, 235, 0.3);
  color: var(--ivory);
}

/* 3. Layout helpers -------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 68px 0;
  position: relative;
}

.section--tight {
  padding: 44px 0;
}

.section--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.018),
    rgba(255, 255, 255, 0)
  );
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #16130a;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* Section heading with the blue hairline + diamond notch */
.sec-head {
  margin-bottom: 30px;
}

.sec-head--center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

.sec-head p {
  color: var(--text-dim);
  max-width: 720px;
  margin-bottom: 0;
}

.sec-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line-strong),
    transparent
  );
  position: relative;
  margin: 6px 0 0;
}

.rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 4. Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  transition: transform var(--step), background var(--step),
    border-color var(--step), color var(--step), box-shadow var(--step);
  text-align: center;
}

.btn svg {
  flex: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.24);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--gold-soft);
  background: rgba(37, 99, 235, 0.04);
}

.btn--ghost:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.btn--quiet {
  border-color: var(--line-soft);
  color: var(--text-dim);
}

.btn--quiet:hover {
  border-color: var(--line-strong);
  color: var(--gold-soft);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--surface-2);
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--step), border-color var(--step),
    background var(--step);
}

.icon-btn:hover {
  color: var(--gold-soft);
  border-color: var(--line-strong);
}

.icon-btn.is-on {
  color: var(--gold);
  border-color: var(--line-strong);
  background: rgba(37, 99, 235, 0.1);
}

/* 5. Header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(9, 10, 13, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.5),
    transparent
  );
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
  color: var(--ivory);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand:hover {
  color: var(--ivory);
}

.brand img {
  height: 38px;
  width: auto;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  display: block;
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.05);
}

.main-nav a[aria-current="page"] {
  color: var(--gold);
  background: rgba(37, 99, 235, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.fav-link {
  position: relative;
}

.fav-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.menu-toggle {
  display: none;
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 88vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 120;
  transform: translateX(100%);
  transition: transform var(--step);
  padding: 22px;
  overflow-y: auto;
  visibility: hidden;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.mobile-nav a {
  display: block;
  padding: 13px 6px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-weight: 500;
}

.mobile-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 7, 0.7);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--step);
}

.nav-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* 6. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 62px 0 54px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    720px 320px at 50% 0%,
    rgba(37, 99, 235, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 16px;
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold-deep) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 26px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-search {
  max-width: 560px;
  margin: 0 auto 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.025);
  font-size: 12.5px;
  color: var(--text-dim);
}

.trust-chip b {
  color: var(--gold-soft);
  font-weight: 600;
}

/* Signature element: blue acoustic wave */
.wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 46px;
  margin: 30px auto 0;
  max-width: 460px;
}

.wave span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold-soft), rgba(37, 99, 235, 0.2));
  animation: waveMove 1.6s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes waveMove {
  0%,
  100% {
    transform: scaleY(0.28);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* 7. Search & filters ------------------------------------------------------ */
.search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field svg {
  position: absolute;
  left: 16px;
  color: var(--text-faint);
  pointer-events: none;
}

.search-field input {
  width: 100%;
  padding: 15px 18px 15px 46px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  background: var(--surface-2);
  color: var(--text);
  transition: border-color var(--step), background var(--step);
}

.search-field input::placeholder {
  color: var(--text-faint);
}

.search-field input:focus {
  border-color: var(--line-strong);
  background: var(--surface-3);
  outline: none;
}

.filter-bar {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.field select {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8b8f9c 50%),
    linear-gradient(135deg, #8b8f9c 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.field select:focus {
  border-color: var(--line-strong);
  outline: none;
}

.filter-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.result-count {
  font-size: 14px;
  color: var(--text-dim);
}

.result-count b {
  color: var(--gold-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: rgba(37, 99, 235, 0.09);
  color: var(--gold-soft);
  font-size: 12.5px;
  cursor: pointer;
}

.chip:hover {
  background: rgba(37, 99, 235, 0.16);
}

.chip b {
  font-weight: 600;
}

/* 8. Ringtone grid & card -------------------------------------------------- */
.tone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(276px, 1fr));
  gap: 18px;
}

.tone-card {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--surface-2),
    var(--surface) 65%
  );
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: border-color var(--step), transform var(--step),
    box-shadow var(--step);
}

.tone-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tone-card.is-playing {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.tone-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.play-btn {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(
    circle at 35% 30%,
    rgba(37, 99, 235, 0.24),
    rgba(37, 99, 235, 0.06)
  );
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--step), background var(--step), color var(--step);
}

.play-btn:hover {
  transform: scale(1.06);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #ffffff;
}

.tone-card.is-playing .play-btn {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #ffffff;
}

.play-btn .ico-pause {
  display: none;
}

.tone-card.is-playing .play-btn .ico-play,
.is-playing > .play-btn .ico-play {
  display: none;
}

.tone-card.is-playing .play-btn .ico-pause {
  display: block;
}

.tone-head {
  min-width: 0;
  flex: 1;
}

.tone-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.35;
}

.tone-title a {
  color: var(--ivory);
}

.tone-title a:hover {
  color: var(--gold-soft);
}

.tone-meta {
  font-size: 12.5px;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
}

.tone-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tone-meta span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-faint);
  opacity: 0.6;
}

.tone-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.bar > i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  transition: width 0.15s linear;
}

.tone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  color: var(--text-faint);
}

.tone-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.tone-actions .btn {
  flex: 1;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid var(--line-strong);
  color: var(--gold-soft);
}

.badge--new {
  background: rgba(86, 194, 136, 0.12);
  border-color: rgba(86, 194, 136, 0.4);
  color: #7fd6a6;
}

.empty-state {
  text-align: center;
  padding: 56px 20px;
  border: 1px dashed var(--line-soft);
  border-radius: var(--radius-lg);
  color: var(--text-dim);
}

.empty-state h3 {
  color: var(--ivory);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* 9. Category cards & feature grids ---------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.cat-card {
  display: block;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  color: var(--text);
  transition: transform var(--step), border-color var(--step),
    box-shadow var(--step);
}

.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: var(--shadow);
}

.cat-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: var(--gold);
}

.cat-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.cat-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.cat-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.panel h3 {
  font-size: 20px;
}

.panel p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: var(--text-dim);
  font-size: 14.5px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
}

/* 10. Accordion (FAQ) ------------------------------------------------------ */
.accordion {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.acc-item + .acc-item {
  border-top: 1px solid var(--line-soft);
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--text);
  transition: color var(--step), background var(--step);
}

.acc-btn:hover {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.02);
}

.acc-btn[aria-expanded="true"] {
  color: var(--gold);
}

.acc-btn .acc-ico {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}

.acc-btn .acc-ico::before,
.acc-btn .acc-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--step), opacity var(--step);
}

.acc-btn .acc-ico::before {
  width: 13px;
  height: 1.5px;
}

.acc-btn .acc-ico::after {
  width: 1.5px;
  height: 13px;
}

.acc-btn[aria-expanded="true"] .acc-ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.acc-panel {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 900px;
}

.acc-panel[hidden] {
  display: none;
}

.acc-panel p:last-child {
  margin-bottom: 0;
}

/* 11. Tables --------------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  font-size: 14.5px;
}

th,
td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

th {
  color: var(--text-faint);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

td {
  color: var(--text);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

/* 12. Breadcrumb ----------------------------------------------------------- */
.crumbs {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--text-faint);
}

.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.crumbs li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.crumbs li + li::before {
  content: "/";
  color: var(--text-faint);
  opacity: 0.5;
}

.crumbs a {
  color: var(--text-dim);
}

.crumbs a:hover {
  color: var(--gold-soft);
}

/* 13. Page header (inner pages) -------------------------------------------- */
.page-head {
  padding: 34px 0 8px;
}

.page-head h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.page-head .lead {
  color: var(--text-dim);
  max-width: 760px;
  font-size: 16.5px;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  font-size: 28px;
  margin-top: 40px;
}

.prose h3 {
  font-size: 21px;
  margin-top: 28px;
}

.prose p,
.prose li {
  color: var(--text-dim);
}

.prose strong {
  color: var(--text);
}

/* 14. Detail page ---------------------------------------------------------- */
.stage {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    460px 200px at 50% 0%,
    rgba(37, 99, 235, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.stage-play {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 60px;
  margin: 8px auto 20px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.eq span {
  width: 3px;
  height: 22%;
  border-radius: 2px;
  background: rgba(37, 99, 235, 0.28);
  transform-origin: bottom;
}

.eq.is-live span {
  animation: waveMove 1.35s ease-in-out infinite;
  background: linear-gradient(180deg, var(--gold-soft), rgba(37, 99, 235, 0.2));
}

.stage-time {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 22px;
  font-size: 13px;
  color: var(--text-faint);
  position: relative;
  z-index: 1;
}

.stage-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 0;
}

.seek::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 0;
}

.prev-next {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

.pn-link {
  max-width: 47%;
}

.pn-link span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}

/* 15. Blog ----------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.blog-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform var(--step), border-color var(--step);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1180 / 664;
  object-fit: cover;
  border-bottom: 1px solid var(--line-soft);
}

.blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-body h3 {
  font-size: 18px;
  margin: 0;
}

.blog-body h3 a {
  color: var(--ivory);
}

.blog-body h3 a:hover {
  color: var(--gold-soft);
}

.blog-body p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
}

.post-meta {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.post-hero {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  margin: 22px 0 30px;
  width: 100%;
}

/* 16. Footer --------------------------------------------------------------- */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand img {
  height: 40px;
  margin: 0 auto 14px 0;
  display: block;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 330px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: var(--text-dim);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-faint);
}

.footer-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.6;
}

/* 17. Sticky player -------------------------------------------------------- */
.mini-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(13, 14, 19, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform var(--step);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
}

.mini-player.is-open {
  transform: translateY(0);
}

.mp-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mp-info {
  min-width: 0;
  flex: 1;
}

.mp-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-sub {
  font-size: 12px;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}

.mp-main {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mp-main .ico-pause {
  display: none;
}

.mini-player.is-playing .mp-main .ico-play {
  display: none;
}

.mini-player.is-playing .mp-main .ico-pause {
  display: block;
}

.mp-seek {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-faint);
  min-width: 200px;
}

.mp-extra {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}

.vol {
  -webkit-appearance: none;
  appearance: none;
  width: 84px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.vol::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 0;
}

/* 18. Toast ---------------------------------------------------------------- */
.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(360px, calc(100vw - 36px));
}

body.player-open .toast-stack {
  bottom: 108px;
}

.toast {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-left-width: 3px;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow);
  animation: toastIn 0.24s ease-out;
}

.toast--err {
  border-color: var(--err);
}

.toast--ok {
  border-color: var(--ok);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 19. 404 ------------------------------------------------------------------ */
.err-wrap {
  text-align: center;
  padding: 80px 0 40px;
}

.err-code {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

/* 20. Misc ----------------------------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.stat {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  background: var(--surface);
}

.stat b {
  display: block;
  font-size: 26px;
  color: var(--gold-soft);
  font-weight: 700;
  line-height: 1.2;
}

.stat span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.link-cloud a {
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  color: var(--text-dim);
  font-size: 13.5px;
}

.link-cloud a:hover {
  border-color: var(--line-strong);
  color: var(--gold-soft);
}

.cta-band {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 26px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 22px;
}

.notice {
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  background: rgba(37, 99, 235, 0.04);
  font-size: 14px;
  color: var(--text-dim);
}

.notice strong {
  color: var(--text);
}

/* 21. Fallbacks ------------------------------------------------------------ */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 .accent,
  .err-code {
    background: none;
    color: var(--gold-soft);
  }
}

/* 22. Reduced motion ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .wave span,
  .eq.is-live span {
    transform: scaleY(0.6);
    opacity: 0.8;
  }
}

/* ========================================================================== 
   Design Seed 8 overrides — clean light theme with blue/cyan branding
   ========================================================================== */
:root {
  --bg: #f7f9fc;
  --bg-deep: #eef4ff;
  --surface: #ffffff;
  --surface-2: #f5f8fd;
  --surface-3: #edf3fb;
  --gold: #2563eb;
  --gold-soft: #06b6d4;
  --gold-deep: #1d4ed8;
  --ivory: #0f172a;
  --text: #172033;
  --text-dim: #526079;
  --text-faint: #718096;
  --line: rgba(37, 99, 235, 0.18);
  --line-soft: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(37, 99, 235, 0.38);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.07);
  --shadow: 0 18px 48px rgba(31, 55, 91, 0.13);
  --shadow-gold: 0 14px 36px rgba(37, 99, 235, 0.2);
}

body {
  background: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(700px 420px at 95% 0%, rgba(6, 182, 212, 0.12), transparent 68%),
    radial-gradient(760px 480px at 0% 8%, rgba(37, 99, 235, 0.10), transparent 68%);
  background-attachment: fixed;
}

::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--ivory);
}

:focus-visible {
  outline-color: #2563eb;
}

.section--alt {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.035), rgba(6, 182, 212, 0.018));
}

.site-header {
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), rgba(6, 182, 212, 0.35), transparent);
}

.main-nav a:hover {
  color: var(--ivory);
  background: rgba(37, 99, 235, 0.07);
}

.nav-scrim {
  background: rgba(15, 23, 42, 0.45);
}

.btn--primary,
.btn--gold {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn--primary:hover,
.btn--gold:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 17px 38px rgba(37, 99, 235, 0.3);
}

.btn--ghost {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.24);
  background: rgba(37, 99, 235, 0.05);
}

.btn--ghost:hover {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.11);
}

.icon-btn,
.search-field input,
.field select,
.filter-bar,
.panel,
.cat-card,
.blog-card,
.stage,
.stat,
.acc-item,
.table-scroll {
  box-shadow: var(--shadow-sm);
}

/* Redesigned homepage hero */
.hero {
  padding: 54px 0 60px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(239,246,255,0.84)),
    radial-gradient(circle at 80% 10%, rgba(6,182,212,0.18), transparent 38%);
}

.hero::before {
  background: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-copy .eyebrow {
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  max-width: 760px;
  margin-bottom: 18px;
}

.hero h1 .accent {
  display: block;
  background: linear-gradient(110deg, #2563eb, #06b6d4 82%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 660px;
  margin: 0 0 24px;
  font-size: 17px;
}

.hero-search {
  max-width: 650px;
  margin: 0 0 18px;
}

.hero-search .search-field input {
  min-height: 58px;
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 32px rgba(31, 55, 91, 0.08);
}

.hero-cta,
.hero-copy .trust-row {
  justify-content: flex-start;
}

.hero-cta {
  margin-bottom: 20px;
}

.trust-chip {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(37, 99, 235, 0.13);
  color: #526079;
}

.trust-chip b {
  color: #1d4ed8;
}

.hero-player-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 28px 70px rgba(31, 65, 119, 0.17);
  position: relative;
  overflow: hidden;
}

.hero-player-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -70px;
  top: -80px;
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(6,182,212,.18));
}

.hero-panel-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 17px;
}

.hero-panel-head > div > span {
  display: block;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-panel-head h2 {
  font-size: 23px;
  margin: 0;
}

.live-pill {
  flex: none;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(6, 182, 212, 0.1);
  color: #087e91;
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.hero-tune-list {
  display: grid;
  gap: 9px;
  position: relative;
}

.hero-tune {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 40px;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 16px;
  background: #f9fbff;
  transition: transform var(--step), border-color var(--step), background var(--step);
}

.hero-tune:hover,
.hero-tune.is-playing {
  transform: translateX(-3px);
  border-color: rgba(37, 99, 235, 0.3);
  background: #ffffff;
}

.hero-play {
  width: 44px;
  height: 44px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.hero-play:hover,
.hero-tune.is-playing .hero-play {
  color: #ffffff;
}

.hero-tune.is-playing .play-btn .ico-play {
  display: none;
}

.hero-tune.is-playing .play-btn .ico-pause {
  display: block;
}

.hero-tune-copy {
  min-width: 0;
}

.hero-tune-copy h3 {
  font-size: 14.5px;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-tune-copy h3 a {
  color: #172033;
}

.hero-tune-copy p {
  margin: 0;
  color: #718096;
  font-size: 11.5px;
}

.hero-download {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-download:hover {
  color: #ffffff;
  background: #2563eb;
}

.hero-all-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 12px 14px 2px;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 13px;
}

/* New ringtone cards */
.tone-grid {
  grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
  gap: 20px;
}

.tone-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 8px 26px rgba(31, 55, 91, 0.075);
  overflow: hidden;
}

.tone-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  opacity: .82;
}

.tone-card:hover {
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 20px 46px rgba(31, 65, 119, 0.15);
}

.tone-card.is-playing {
  border-color: rgba(37, 99, 235, 0.55);
}

.play-btn {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(145deg, rgba(37,99,235,.12), rgba(6,182,212,.12));
}

.play-btn:hover,
.tone-card.is-playing .play-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.tone-title a {
  color: #172033;
}

.tone-title a:hover {
  color: #2563eb;
}

.bar,
.seek,
.vol {
  background: rgba(15, 23, 42, 0.1);
}

.badge {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.2);
}

.badge--new {
  color: #067647;
  background: #ecfdf3;
  border-color: #a7f3d0;
}

.library-controls {
  gap: 12px;
  flex-wrap: wrap;
}

/* Inner pages and utility surfaces */
.filter-bar,
.stage,
.panel,
.cat-card,
.blog-card,
.stat,
.table-scroll,
.acc-item,
.cta-band {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

.stage::before {
  background: radial-gradient(460px 200px at 50% 0%, rgba(37, 99, 235, 0.1), transparent 70%);
}

.site-footer {
  background: #eef4ff;
  border-top-color: rgba(37, 99, 235, 0.12);
}

.mini-player {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 38px rgba(31, 55, 91, 0.13);
}

.mp-main {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.toast {
  background: #ffffff;
}


/* Final interaction and alignment corrections */
[hidden] { display: none !important; }
.cta-band .hero-cta { justify-content: center; }
.footer-grid { align-items: start; }
.footer-brand { align-self: start; justify-self: start; text-align: left; }
.footer-keyword { color: inherit; font-weight: 600; }
.footer-keyword:hover { color: #1d4ed8; }
.header-actions { margin-left: 0; }
.menu-toggle { order: 99; margin-left: 0; }
@media (max-width: 1024px) {
  .header-actions { margin-left: auto; }
  .menu-toggle { order: 99; }
}
