/* ==========================================================================
   OrbitRadio - Shared Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #0d0e13;
  --bg-dark-2: #15171f;
  --bg-dark-3: #1c1f2a;

  --bg-light: #ffffff;
  --bg-soft: #f4f5f8;
  --bg-soft-2: #eceef3;

  --text-dark: #14151a;
  --text-light: #f6f6f9;

  --text-muted: #6b7080;
  --text-muted-light: #a7abbb;

  --accent: #5b4fe9;
  --accent-2: #8b7bf5;
  --accent-soft: #eeecfd;

  --border: #e3e5ec;
  --border-dark: #2a2d3a;

  --card: #ffffff;
  --card-dark: #181a23;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --max-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;

  --header-h: 76px;

  --shadow-soft:
    0 1px 2px rgba(15, 15, 25, 0.04),
    0 12px 32px -16px rgba(15, 15, 25, 0.14);

  --shadow-lift:
    0 20px 48px -20px rgba(15, 15, 25, 0.28);
}


/* ==========================================================================
   RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 600;
}

p {
  color: var(--text-dark);
}

.on-dark,
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark p {
  color: var(--text-light);
}

.on-dark p,
.on-dark .lede {
  color: var(--text-muted-light);
}

.lede {
  color: var(--text-muted);
  font-size: 1.125rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}

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


/* ==========================================================================
   LAYOUT
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 32px;
}

.section {
  padding-block: 96px;
}

.section--tight {
  padding-block: 64px;
}

.section--dark {
  background: var(--bg-dark);
}

.section--soft {
  background: var(--bg-soft);
}

.section--light {
  background: var(--bg-light);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

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

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.on-dark .section-head p {
  color: var(--text-muted-light);
}

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


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 26px;

  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;

  border-radius: var(--radius-sm);
  border: 1px solid transparent;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;

  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: #4c41d6;
  box-shadow: 0 10px 24px -10px rgba(91, 79, 233, 0.55);
}

.btn--ghost-dark {
  background: transparent;
  border-color: rgba(246, 246, 249, 0.35);
  color: var(--text-light);
}

.btn--ghost-dark:hover {
  border-color: var(--text-light);
  background: rgba(246, 246, 249, 0.08);
}

.btn--ghost-light {
  background: transparent;
  border-color: var(--border);
  color: var(--text-dark);
}

.btn--ghost-light:hover {
  border-color: var(--text-dark);
}

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

.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}


/* ==========================================================================
   CALL SUPPORT BUTTONS
   ========================================================================== */

.call-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 48px;
  padding: 13px 22px;

  background: var(--accent);
  color: #fff;

  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);

  font-weight: 700;
  font-size: 0.95rem;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.call-support-btn:hover {
  background: #4c41d6;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(91, 79, 233, 0.65);
}

.call-support-btn::before {
  content: "☎";
  font-size: 1rem;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 10px 17px;

  background: var(--accent);
  color: #fff;

  border-radius: var(--radius-sm);

  font-size: 0.86rem;
  font-weight: 700;

  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

.header-call-btn:hover {
  background: #4c41d6;
  transform: translateY(-1px);
}

.header-call-btn::before {
  content: "☎";
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;

  height: var(--header-h);

  display: flex;
  align-items: center;

  background: rgba(13, 14, 19, 0.86);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(246, 246, 249, 0.08);

  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 14, 19, 0.97);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

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

  color: var(--text-light);

  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.brand svg {
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--text-muted-light);

  font-size: 0.94rem;
  font-weight: 500;

  padding: 10px 14px;
  border-radius: var(--radius-sm);

  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.main-nav a:hover {
  color: var(--text-light);
  background: rgba(246, 246, 249, 0.06);
}

.main-nav a[aria-current="page"] {
  color: var(--text-light);
}

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

.nav-toggle {
  display: none;

  background: transparent;
  border: 1px solid rgba(246, 246, 249, 0.25);

  border-radius: var(--radius-sm);

  width: 42px;
  height: 42px;

  color: var(--text-light);

  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;

  background: var(--bg-dark);

  z-index: 490;

  padding: 24px 28px 40px;

  display: none;

  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: block;

  padding: 16px 4px;

  border-bottom: 1px solid rgba(246, 246, 249, 0.08);

  color: var(--text-light);

  font-size: 1.05rem;
  font-weight: 500;
}

.mobile-nav .header-actions {
  margin-top: 24px;
  flex-direction: column;
  align-items: stretch;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;

  background:
    radial-gradient(
      120% 140% at 15% 0%,
      #23263a 0%,
      var(--bg-dark) 55%
    );

  color: var(--text-light);

  padding-block: 110px 90px;

  overflow: hidden;
}

.hero__grid {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 56px;

  align-items: center;
}

.hero__eyebrow {
  color: var(--accent-2);

  font-weight: 700;
  font-size: 0.9rem;

  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);

  margin-bottom: 22px;
}

.headerdrive {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

.hero p.lede {
  max-width: 46ch;

  margin-bottom: 30px;

  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  aspect-ratio: 4 / 3.4;

  border-radius: var(--radius-md);

  overflow: hidden;

  background:
    linear-gradient(
      155deg,
      #1b1e2c 0%,
      #0d0e13 70%
    );

  border: 1px solid rgba(246, 246, 249, 0.08);
}

.hero__image {
  display: block;

  width: 100%;
  max-width: 700px;

  height: auto;

  object-fit: contain;

  border-radius: 20px;
}

.signal-graphic {
  width: 100%;
  height: 100%;
}

.page-hero {
  background:
    radial-gradient(
      120% 160% at 85% -10%,
      #23263a 0%,
      var(--bg-dark) 55%
    );

  color: var(--text-light);

  padding-block: 96px 72px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 16px;
}

.page-hero p.lede {
  max-width: 56ch;
}


/* ==========================================================================
   RADIO ID SUPPORT BOX
   ========================================================================== */

.radio-support-section {
  position: relative;
  margin-top: -35px;
  z-index: 10;
}

.radio-support-box {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 28px;

  align-items: center;

  padding: 30px 34px;

  background: #fff;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-lift);
}

.radio-support-copy h2 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.radio-support-copy p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.radio-support-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-support-form input {
  width: 280px;

  min-height: 48px;

  padding: 12px 15px;

  background: #fff;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  color: var(--text-dark);

  outline: none;
}

.radio-support-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 79, 233, 0.1);
}

.radio-support-form input.input-error {
  border-color: #c23b3b;
  box-shadow: 0 0 0 3px rgba(194, 59, 59, 0.08);
}

.radio-support-form button {
  min-height: 48px;
}


/* ==========================================================================
   SUPPORT CTA
   ========================================================================== */

.support-call-section {
  padding-block: 70px;
}

.support-call-card {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 38px 42px;

  background:
    linear-gradient(
      135deg,
      #161823,
      #0d0e13
    );

  color: #fff;

  border-radius: var(--radius-md);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: var(--shadow-lift);
}

.support-call-card h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);

  margin-bottom: 9px;
}

.support-call-card p {
  color: var(--text-muted-light);
  max-width: 58ch;
}

.support-call-card .call-support-btn {
  flex-shrink: 0;
}


/* ==========================================================================
   VALUE STRIP
   ========================================================================== */

.value-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;
}

.value-card {
  padding: 30px 26px;

  background: var(--card);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);
}

.value-card .icon {
  width: 44px;
  height: 44px;

  margin-bottom: 18px;

  color: var(--accent);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 1rem;
}


/* ==========================================================================
   CHANNEL CARDS
   ========================================================================== */

.channel-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;
}

.channel-card {
  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  overflow: hidden;

  background: var(--card);

  display: flex;
  flex-direction: column;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow-lift);

  border-color: transparent;
}

.channel-art {
  aspect-ratio: 16 / 10;

  position: relative;

  display: flex;
  align-items: flex-end;

  padding: 16px;

  color: #fff;
}

.channel-art .glyph {
  width: 34px;
  height: 34px;
  opacity: 0.9;
}

.channel-body {
  padding: 18px 18px 22px;

  display: flex;
  flex-direction: column;

  gap: 10px;

  flex: 1;
}

.channel-body .cat {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

.channel-body h3 {
  font-size: 1.08rem;
}

.channel-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.channel-body .btn {
  margin-top: 4px;
}

.art-1 {
  background: linear-gradient(140deg, #5b4fe9, #a996f7);
}

.art-2 {
  background: linear-gradient(140deg, #ef6f6f, #f4a35c);
}

.art-3 {
  background: linear-gradient(140deg, #1b2b4a, #3c5a8f);
}

.art-4 {
  background: linear-gradient(140deg, #1e6f5c, #58bfa0);
}

.art-5 {
  background: linear-gradient(140deg, #b1436b, #e88fa8);
}

.art-6 {
  background: linear-gradient(140deg, #2c2f3d, #5b4fe9);
}

.art-7 {
  background: linear-gradient(140deg, #c98a2e, #eecb6b);
}

.art-8 {
  background: linear-gradient(140deg, #3a4a5a, #7f97ab);
}


/* ==========================================================================
   EDITORIAL
   ========================================================================== */

.split {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 64px;

  align-items: center;
}

.split.reverse .split__visual {
  order: 2;
}

.split__visual {
  aspect-ratio: 4 / 3.2;

  border-radius: var(--radius-md);

  overflow: hidden;

  background:
    linear-gradient(
      160deg,
      var(--bg-dark-3),
      var(--bg-dark)
    );

  border: 1px solid var(--border-dark);
}

.split__copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);

  margin-bottom: 18px;
}

.split__copy p {
  color: var(--text-muted);

  margin-bottom: 26px;

  font-size: 1.02rem;
}


/* ==========================================================================
   STEPS
   ========================================================================== */

.steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.step {
  padding: 32px 28px;

  background: var(--bg-light);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);
}

.step__index {
  font-family: var(--font-display);

  font-size: 0.95rem;

  color: var(--accent);

  font-weight: 700;

  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}


/* ==========================================================================
   FEATURE ROWS
   ========================================================================== */

.feature-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;
}

.feature-row__panel {
  padding: 88px 64px;
}

.feature-row__panel.is-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.feature-row__panel.is-light {
  background: var(--bg-soft);
}

.feature-row__panel h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.feature-row__panel p {
  color: var(--text-muted);
}

.feature-row__panel.is-dark p {
  color: var(--text-muted-light);
}

.feature-row__visual {
  min-height: 340px;

  background:
    linear-gradient(
      160deg,
      #1b1e2c,
      #0d0e13
    );
}

.feature-row__visual.alt {
  background:
    linear-gradient(
      160deg,
      #dcdff0,
      #f4f5f8
    );
}


/* ==========================================================================
   DEVICE CARDS
   ========================================================================== */

.device-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;
}

.device-card {
  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  overflow: hidden;

  background: var(--bg-light);
}

.device-visual {
  aspect-ratio: 1 / 0.9;

  background:
    linear-gradient(
      150deg,
      var(--bg-soft-2),
      #fff
    );

  display: flex;

  align-items: center;

  justify-content: center;

  border-bottom: 1px solid var(--border);
}

.device-body {
  padding: 22px 20px 26px;
}

.device-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.device-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  background: var(--bg-dark);

  color: var(--text-light);

  text-align: center;

  padding-block: 100px;
}

.final-cta h2 {
  color: #fff;

  font-size: clamp(2rem, 4vw, 2.8rem);

  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-muted-light);

  margin-bottom: 32px;

  font-size: 1.05rem;
}

.final-cta__actions {
  display: flex;

  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;
}


/* ==========================================================================
   SUPPORT MODAL
   ========================================================================== */

body.modal-open {
  overflow: hidden;
}

.support-modal {
  position: fixed;

  inset: 0;

  z-index: 2000;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 24px;

  background: rgba(5, 6, 10, 0.78);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.support-modal.is-open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.support-modal-box {
  position: relative;

  width: 100%;

  max-width: 520px;

  padding: 38px;

  background: #fff;

  border-radius: 14px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35);

  transform: translateY(15px) scale(0.98);

  transition: transform 0.2s ease;
}

.support-modal.is-open .support-modal-box {
  transform: translateY(0) scale(1);
}

.support-modal-box h2 {
  font-size: 1.7rem;

  margin-bottom: 12px;
}

.support-modal-box p {
  color: var(--text-muted);

  font-size: 0.96rem;

  margin-bottom: 22px;
}

.support-modal-close {
  position: absolute;

  top: 14px;
  right: 16px;

  width: 38px;
  height: 38px;

  border: 0;

  background: transparent;

  color: var(--text-muted);

  font-size: 1.7rem;

  cursor: pointer;

  border-radius: 50%;
}

.support-modal-close:hover {
  background: var(--bg-soft);

  color: var(--text-dark);
}

.entered-radio {
  padding: 14px 16px;

  margin-bottom: 22px;

  background: var(--bg-soft);

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  font-size: 0.9rem;

  color: var(--text-muted);
}

.entered-radio strong {
  display: block;

  margin-top: 3px;

  color: var(--text-dark);

  font-family: var(--font-display);

  font-size: 1rem;

  word-break: break-all;
}

.support-modal-actions {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}

.support-modal-actions .call-support-btn {
  flex: 1;
}

.continue-btn {
  min-height: 48px;

  padding: 12px 20px;

  background: transparent;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  color: var(--text-dark);

  font-weight: 600;

  cursor: pointer;
}

.continue-btn:hover {
  border-color: var(--text-dark);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-dark);

  color: var(--text-muted-light);

  padding-block: 72px 32px;

  border-top: 1px solid rgba(246, 246, 249, 0.08);
}

.footer-top {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr 1fr;

  gap: 40px;

  padding-bottom: 48px;

  border-bottom: 1px solid rgba(246, 246, 249, 0.08);
}

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

.footer-brand p {
  color: var(--text-muted-light);

  max-width: 32ch;

  font-size: 0.95rem;
}

.footer-col h4 {
  color: var(--text-light);

  font-family: var(--font-body);

  font-size: 0.9rem;

  font-weight: 600;

  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 0.92rem;

  color: var(--text-muted-light);

  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: var(--text-light);
}

.footer-call {
  margin-top: 18px;
}

.footer-call .call-support-btn {
  font-size: 0.85rem;
  min-height: 42px;
  padding: 9px 15px;
}

.footer-bottom {
  padding-top: 28px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  font-size: 0.85rem;

  color: var(--text-muted);
}


/* ==========================================================================
   CHANNELS
   ========================================================================== */

.channels-toolbar {
  display: flex;

  gap: 18px;

  align-items: center;

  flex-wrap: wrap;

  margin-bottom: 32px;
}

.search-field {
  position: relative;

  flex: 1 1 280px;
}

.search-field input {
  width: 100%;

  padding: 13px 16px 13px 42px;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  background: var(--bg-light);

  font-size: 0.95rem;
}

.search-field input:focus {
  border-color: var(--accent);
}

.search-field svg {
  position: absolute;

  left: 14px;

  top: 50%;

  transform: translateY(-50%);

  color: var(--text-muted);
}

.filter-row {
  display: flex;

  gap: 8px;

  flex-wrap: wrap;

  margin-bottom: 40px;
}

.filter-chip {
  padding: 9px 18px;

  border-radius: 999px;

  border: 1px solid var(--border);

  background: var(--bg-light);

  font-size: 0.88rem;

  font-weight: 600;

  color: var(--text-muted);

  cursor: pointer;

  transition: all 0.18s ease;
}

.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-chip.is-active {
  background: var(--text-dark);

  border-color: var(--text-dark);

  color: #fff;
}

.empty-state {
  display: none;

  text-align: center;

  padding: 80px 20px;

  color: var(--text-muted);
}

.empty-state.is-visible {
  display: block;
}

.empty-state h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
}


/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  align-items: start;
}

.price-card {
  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: 36px 30px;

  background: var(--bg-light);

  position: relative;
}

.price-card.is-recommended {
  border-color: var(--accent);

  box-shadow: var(--shadow-lift);
}

.price-card__badge {
  position: absolute;

  top: -13px;

  left: 30px;

  background: var(--accent);

  color: #fff;

  font-size: 0.76rem;

  font-weight: 700;

  padding: 5px 12px;

  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.price-card .price {
  font-family: var(--font-display);

  font-size: 2.3rem;

  margin: 14px 0 4px;
}

.price-card .price span {
  font-family: var(--font-body);

  font-size: 0.95rem;

  color: var(--text-muted);

  font-weight: 500;
}

.price-card .desc {
  color: var(--text-muted);

  font-size: 0.92rem;

  margin-bottom: 22px;
}

.price-card ul {
  margin-bottom: 26px;
}

.price-card ul li {
  display: flex;

  gap: 10px;

  align-items: flex-start;

  padding: 8px 0;

  font-size: 0.92rem;

  border-top: 1px solid var(--border);
}

.price-card ul li:first-child {
  border-top: none;
}

.price-card ul li svg {
  flex-shrink: 0;

  margin-top: 3px;

  color: var(--accent);
}

[data-plan-feedback] {
  display: none;
}

[data-plan-feedback].is-visible {
  display: block;

  color: var(--accent);

  font-weight: 500;
}

.compare-table-wrap {
  overflow-x: auto;

  margin-top: 64px;
}

.compare-table {
  width: 100%;

  border-collapse: collapse;

  min-width: 640px;
}

.compare-table th,
.compare-table td {
  text-align: left;

  padding: 16px 18px;

  border-bottom: 1px solid var(--border);

  font-size: 0.92rem;
}

.compare-table thead th {
  font-family: var(--font-display);

  font-weight: 600;

  color: var(--text-dark);
}

.compare-table td:not(:first-child),
.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table tbody th {
  font-weight: 500;

  color: var(--text-muted);
}

.compare-table .yes {
  color: var(--accent);
}

.compare-table .no {
  color: var(--text-muted-light);
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 16px;

  padding: 22px 4px;

  background: transparent;

  border: none;

  text-align: left;

  font-size: 1.02rem;

  font-weight: 600;

  color: var(--text-dark);

  cursor: pointer;
}

.accordion-trigger .chevron {
  flex-shrink: 0;

  transition: transform 0.22s ease;

  color: var(--accent);
}

.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.28s ease;
}

.accordion-panel__inner {
  padding: 0 4px 22px;

  color: var(--text-muted);

  font-size: 0.96rem;

  max-width: 72ch;
}

.support-categories {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin-bottom: 56px;
}

.support-cat {
  padding: 24px 22px;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  background: var(--bg-light);
}

.support-cat h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.support-cat p {
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* ==========================================================================
   FORMS
   ========================================================================== */

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-field {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 20px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;

  font-weight: 600;

  color: var(--text-dark);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 13px 14px;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  background: var(--bg-light);

  font-size: 0.95rem;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;

  min-height: 140px;
}

.form-field .error-msg {
  color: #c23b3b;

  font-size: 0.82rem;

  display: none;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: #c23b3b;
}

.form-field.has-error .error-msg {
  display: block;
}

.form-success {
  display: none;

  padding: 20px 22px;

  background: var(--accent-soft);

  border: 1px solid var(--accent);

  border-radius: var(--radius-md);

  color: #362f8a;

  margin-bottom: 28px;

  font-weight: 500;
}

.form-success.is-visible {
  display: block;
}

.contact-categories {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin-bottom: 64px;
}

.contact-info-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-top: 56px;
}

.contact-info-card {
  padding: 26px 24px;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}


/* ==========================================================================
   LEGAL
   ========================================================================== */

.legal-layout {
  display: grid;

  grid-template-columns: 260px 1fr;

  gap: 56px;

  align-items: start;
}

.ready {
  color: white;
  font-weight: 700;
}

.blackc {
  color: black;
  font-weight: 700;
}

.legal-toc {
  position: sticky;

  top: calc(var(--header-h) + 24px);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: 22px;
}

.legal-toc h2 {
  font-size: 0.85rem;

  margin-bottom: 14px;

  color: var(--text-muted);

  font-family: var(--font-body);

  font-weight: 700;
}

.legal-toc ul li {
  margin-bottom: 10px;
}

.legal-toc a {
  font-size: 0.88rem;

  color: var(--text-muted);
}

.legal-toc a:hover {
  color: var(--accent);
}

.legal-content {
  max-width: 72ch;
}

.legal-content h2 {
  font-size: 1.35rem;

  margin-top: 44px;

  margin-bottom: 14px;

  scroll-margin-top: calc(var(--header-h) + 20px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-muted);

  margin-bottom: 16px;

  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 16px 20px;

  list-style: disc;

  color: var(--text-muted);
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);

  font-size: 0.9rem;

  margin-bottom: 8px;
}


/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-hero-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-top: 48px;
}

.stat-block .num {
  font-family: var(--font-display);

  font-size: 2.2rem;

  color: var(--text-light);
}

.stat-block .label {
  color: var(--text-muted-light);

  font-size: 0.92rem;
}


/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.back-to-top {
  position: fixed;

  bottom: 28px;

  right: 28px;

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: var(--text-dark);

  color: #fff;

  border: none;

  display: none;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  z-index: 400;

  box-shadow: var(--shadow-lift);

  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.back-to-top.is-visible {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-3px);
}


/* ==========================================================================
   UTILITY
   ========================================================================== */

.mt-lg {
  margin-top: 56px;
}

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


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {

  .value-grid,
  .channel-grid,
  .device-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-categories,
  .contact-categories {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 992px) {

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-call-btn {
    display: none;
  }

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

  .hero__visual {
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .radio-support-box {
    grid-template-columns: 1fr;
  }

  .radio-support-form {
    width: 100%;
  }

  .radio-support-form input {
    flex: 1;
    width: auto;
  }

  .split {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .split.reverse .split__visual {
    order: 0;
  }

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

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

  .feature-row__visual {
    min-height: 220px;
    order: -1;
  }

  .feature-row__panel {
    padding: 56px 32px;
  }

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

    row-gap: 36px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .about-hero-stats {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .support-call-card {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 768px) {

  .wrap {
    padding-inline: 22px;
  }

  .section {
    padding-block: 64px;
  }

  .value-grid,
  .channel-grid,
  .device-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .support-categories,
  .contact-categories,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-block: 88px 64px;
  }

  .radio-support-section {
    margin-top: 0;
    padding-top: 24px;
  }

  .radio-support-box {
    padding: 26px 22px;
  }

  .radio-support-form {
    flex-direction: column;
    align-items: stretch;
  }

  .radio-support-form input {
    width: 100%;
  }

  .radio-support-form button {
    width: 100%;
  }

  .support-call-card {
    padding: 30px 24px;
  }

  .support-call-card .call-support-btn {
    width: 100%;
  }

}


@media (max-width: 480px) {

  .value-grid,
  .channel-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .channels-toolbar {
    flex-direction: column;

    align-items: stretch;
  }

  .price-card.is-recommended {
    transform: none;
  }

  .support-modal {
    padding: 16px;
  }

  .support-modal-box {
    padding: 30px 22px 24px;
  }

  .support-modal-actions {
    flex-direction: column;
  }

  .support-modal-actions .call-support-btn,
  .continue-btn {
    width: 100%;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
  }

}
.lede{
  color:white 
}