:root {
  --background: #070b1b;
  --background-deep: #050814;
  --surface: #0d1326;
  --surface-strong: #12182d;
  --surface-soft: #151c33;
  --border: #29304c;
  --border-soft: rgba(133, 144, 183, 0.18);
  --primary: #7557ff;
  --primary-strong: #6242f5;
  --primary-light: #a78bfa;
  --text: #f7f7ff;
  --muted: #9aa4bf;
  --muted-strong: #c3c9dc;
  --success: #22c55e;
  --cyan: #36d7ef;
  --container: 1440px;
  --header-height: 74px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -15%, rgba(117, 87, 255, 0.15), transparent 34%),
    linear-gradient(180deg, var(--background) 0%, var(--background-deep) 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

button,
summary {
  font: inherit;
}

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

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

img {
  max-width: 100%;
}

::selection {
  background: rgba(117, 87, 255, 0.42);
  color: white;
}

:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 10px;
  background: white;
  color: #11152a;
  padding: 12px 16px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(120px);
  pointer-events: none;
}

.ambient-one {
  top: 520px;
  left: -290px;
  background: #6947ff;
}

.ambient-two {
  top: 1600px;
  right: -330px;
  background: #4326ca;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(145, 153, 189, 0.12);
  background: rgba(7, 11, 27, 0.82);
  backdrop-filter: blur(22px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: linear-gradient(145deg, var(--primary-light), var(--primary-strong));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 28px rgba(96, 64, 244, 0.24);
  color: white;
  font-size: 1rem;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 42px);
  height: 100%;
}

.desktop-nav a {
  position: relative;
  display: grid;
  align-items: center;
  height: 100%;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover {
  color: white;
  transform: translateY(-1px);
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 20px;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease;
}

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

.button-primary {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #805fff 0%, #5e3eea 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 34px rgba(93, 59, 236, 0.26);
}

.button-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(93, 59, 236, 0.36);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(17, 23, 44, 0.68);
  color: var(--muted-strong);
}

.button-secondary:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(28, 34, 62, 0.88);
  color: white;
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 0.84rem;
}

.button-full {
  width: 100%;
}

.arrow {
  display: inline-block;
  transition: transform 170ms ease;
}

a:hover .arrow {
  transform: translateX(4px);
}

.discord-dot {
  position: relative;
  width: 17px;
  height: 13px;
  overflow: hidden;
  border: 2px solid currentColor;
  border-radius: 8px 8px 6px 6px;
  color: transparent;
}

.discord-dot::before,
.discord-dot::after {
  position: absolute;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  content: "";
}

.discord-dot::before {
  left: 3px;
}

.discord-dot::after {
  right: 3px;
}

.mobile-menu {
  display: none;
}

.section {
  position: relative;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 112px 0;
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.hero {
  padding-top: 70px;
}

.section-heading {
  margin-bottom: 48px;
}

.hero-heading {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 5.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.gradient-text {
  background: linear-gradient(105deg, #f7f7ff 5%, #aa90ff 50%, #7150ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
}

.journey-list {
  position: relative;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-list::before {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 18px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(142, 113, 255, 0.72) 0,
    rgba(142, 113, 255, 0.72) 7px,
    transparent 7px,
    transparent 13px
  );
  content: "";
}

.journey-item {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  align-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 18px 18px 18px 72px;
  background:
    linear-gradient(135deg, rgba(22, 29, 54, 0.9), rgba(12, 17, 35, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

.journey-item:hover {
  border-color: rgba(137, 107, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(27, 34, 65, 0.96), rgba(14, 19, 40, 0.96));
  transform: translateX(3px);
}

.journey-number {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 4px solid var(--background);
  border-radius: 50%;
  background: linear-gradient(145deg, #8d6cff, #593ce7);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
  transform: translate(-1px, -50%);
}

.journey-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(150, 132, 230, 0.22);
  border-radius: 11px;
  background: rgba(117, 87, 255, 0.1);
  color: var(--primary-light);
  font-size: 1.24rem;
  font-weight: 900;
}

.journey-copy {
  display: grid;
  align-content: center;
  gap: 6px;
}

.journey-copy strong {
  color: var(--text);
  font-size: 0.98rem;
}

.journey-copy span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.dashboard-frame {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(122, 91, 255, 0.62);
  border-radius: 17px;
  background: #0a0e1f;
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.34),
    0 0 60px rgba(91, 62, 221, 0.08);
}

.dashboard-frame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  content: "";
  pointer-events: none;
}

.dashboard-bar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(147, 155, 190, 0.14);
  padding: 0 16px;
  background: rgba(13, 18, 37, 0.98);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

.dashboard-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.55);
}

.live-pill {
  border: 1px solid rgba(117, 87, 255, 0.22);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(117, 87, 255, 0.1);
  color: #cfc3ff;
}

.dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(147, 155, 190, 0.12);
}

.dashboard-frame figcaption {
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 610px;
  margin: 0;
  font-size: 1.02rem;
}

.product-section::before,
.pricing-section::before,
.updates-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 113, 255, 0.34),
    transparent
  );
  content: "";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 230px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 20px;
  background:
    linear-gradient(145deg, rgba(20, 27, 51, 0.9), rgba(11, 16, 33, 0.92));
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.feature-card:hover {
  border-color: rgba(125, 94, 255, 0.46);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(138, 112, 255, 0.24);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(117, 87, 255, 0.18),
    rgba(117, 87, 255, 0.06)
  );
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
}

.control-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 25px 28px;
  background: rgba(15, 21, 42, 0.72);
}

.control-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}

.control-strip strong {
  font-size: 0.96rem;
}

.control-strip p {
  grid-column: 2;
  margin: 4px 0 0;
  font-size: 0.82rem;
}

.status-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.5);
}

.text-link,
.extension-card a,
.guide-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfc4ff;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.extensions-section {
  padding-top: 42px;
}

.webradio-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.72fr);
  gap: clamp(42px, 6vw, 92px);
  border: 1px solid rgba(115, 87, 245, 0.38);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 64px);
  background:
    radial-gradient(circle at 86% 15%, rgba(45, 203, 229, 0.07), transparent 28%),
    radial-gradient(circle at 18% 92%, rgba(117, 87, 255, 0.13), transparent 34%),
    linear-gradient(140deg, rgba(15, 21, 43, 0.96), rgba(8, 13, 28, 0.98));
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.product-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(146, 118, 255, 0.34);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(117, 87, 255, 0.12);
  color: #cfc4ff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-muted {
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.webradio-copy h2 {
  max-width: 760px;
}

.section-lead {
  max-width: 670px;
  font-size: 1rem;
}

.radio-step-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.radio-step {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 16px 14px 12px;
  background: rgba(6, 10, 24, 0.44);
}

.radio-step-number {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
}

.radio-step-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(117, 87, 255, 0.12);
  color: var(--primary-light);
  font-size: 1.15rem;
  font-weight: 800;
}

.radio-step h3 {
  margin: 0 0 3px;
  font-size: 0.9rem;
}

.radio-step p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.radio-demo {
  align-self: center;
  border: 1px solid rgba(127, 102, 233, 0.32);
  border-radius: 18px;
  padding: 18px;
  background: rgba(6, 10, 24, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 70px rgba(0, 0, 0, 0.26);
}

.radio-demo-header,
.history-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.radio-demo-header > div {
  display: grid;
  gap: 4px;
}

.demo-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.radio-demo-header strong {
  font-size: 0.92rem;
}

.on-air {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(54, 215, 239, 0.22);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(54, 215, 239, 0.08);
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 800;
}

.on-air i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(54, 215, 239, 0.6);
}

.now-playing {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  padding: 14px;
  background: rgba(17, 23, 44, 0.78);
}

.album-cover {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(2, 5, 18, 0.28)),
    linear-gradient(160deg, #341b6a 0%, #8d3f98 48%, #ff765c 100%);
}

.sun {
  position: absolute;
  top: 31px;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb16c, #ff5d80);
  box-shadow: 0 0 35px rgba(255, 119, 122, 0.35);
  transform: translateX(-50%);
}

.mountain {
  position: absolute;
  right: -10px;
  bottom: 30px;
  left: -10px;
  height: 70px;
  background: #151137;
  clip-path: polygon(0 100%, 0 62%, 24% 28%, 40% 61%, 62% 18%, 80% 54%, 100% 22%, 100% 100%);
}

.mountain-two {
  bottom: 18px;
  height: 54px;
  background: #080c25;
  clip-path: polygon(0 100%, 0 38%, 22% 70%, 39% 17%, 58% 61%, 74% 22%, 100% 69%, 100% 100%);
}

.grid-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  background:
    linear-gradient(rgba(114, 98, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 98, 255, 0.34) 1px, transparent 1px);
  background-size: 10px 10px;
  transform: perspective(80px) rotateX(35deg);
  transform-origin: bottom;
}

.track-info {
  display: grid;
  align-content: center;
}

.track-info > span {
  color: var(--muted);
  font-size: 0.67rem;
}

.track-info > strong {
  margin-top: 6px;
  font-size: 1.2rem;
}

.track-info > small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.waveform {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 16px;
}

.waveform i {
  width: 3px;
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--primary));
}

.waveform i:nth-child(3n) {
  height: 27px;
}

.waveform i:nth-child(4n) {
  height: 19px;
}

.waveform i:nth-child(5n) {
  height: 34px;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.player-controls button {
  width: 29px;
  height: 29px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted-strong);
  pointer-events: none;
}

.player-controls .play-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #8464ff, #5e3eea);
  color: white;
  font-size: 0.72rem;
}

.history {
  margin-top: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  padding: 14px;
  background: rgba(17, 23, 44, 0.5);
}

.history-title {
  margin-bottom: 10px;
}

.history-title strong {
  font-size: 0.76rem;
}

.history-title span {
  color: var(--muted);
  font-size: 0.65rem;
}

.history-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  border-top: 1px solid rgba(135, 145, 184, 0.1);
}

.history-row strong {
  font-size: 0.7rem;
}

.history-row small {
  color: var(--muted);
  font-size: 0.62rem;
}

.mini-cover {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(145deg, #7155ff, #ff6d88);
}

.cover-2 {
  background: linear-gradient(145deg, #12b8dd, #5044e7);
}

.cover-3 {
  background: linear-gradient(145deg, #ff9548, #a334d3);
}

.cover-4 {
  background: linear-gradient(145deg, #6e52ff, #35d6e6);
}

.catalog-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.68fr);
  align-items: end;
  gap: 80px;
  margin: 100px 0 34px;
}

.catalog-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.catalog-heading > p {
  margin: 0;
}

.extension-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.extension-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: 17px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(18, 24, 46, 0.86), rgba(9, 14, 30, 0.9));
  transition:
    transform 170ms ease,
    border-color 170ms ease;
}

.extension-card:hover {
  border-color: rgba(132, 101, 255, 0.5);
  transform: translateY(-4px);
}

.extension-featured {
  border-color: rgba(117, 87, 255, 0.52);
  background:
    radial-gradient(circle at 90% 0%, rgba(117, 87, 255, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(22, 28, 55, 0.94), rgba(10, 14, 31, 0.94));
}

.extension-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.extension-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(137, 111, 255, 0.28);
  border-radius: 11px;
  background: rgba(117, 87, 255, 0.12);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 900;
}

.extension-status {
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
}

.extension-card p {
  margin-bottom: 22px;
  font-size: 0.83rem;
}

.extension-card a {
  margin-top: auto;
}

.centered-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 32px;
  background: linear-gradient(155deg, rgba(20, 27, 51, 0.9), rgba(9, 14, 30, 0.94));
}

.plan-highlighted {
  border-color: rgba(126, 95, 255, 0.65);
  background:
    radial-gradient(circle at 50% -10%, rgba(117, 87, 255, 0.22), transparent 36%),
    linear-gradient(155deg, rgba(26, 32, 63, 0.98), rgba(11, 15, 34, 0.98));
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.22);
  transform: translateY(-10px);
}

.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(168, 140, 255, 0.28);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(117, 87, 255, 0.14);
  color: #d7cdff;
  font-size: 0.63rem;
  font-weight: 900;
}

.plan-label {
  margin-bottom: 18px;
  color: var(--primary-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 2.1rem;
}

.plan-card > p {
  min-height: 76px;
  margin-bottom: 20px;
}

.plan-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border-soft);
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.plan-card li span {
  color: var(--primary-light);
}

.plan-card .button {
  margin-top: auto;
}

.radio-pricing {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) 1.4fr;
  gap: 30px;
  margin-top: 28px;
  border: 1px solid rgba(117, 87, 255, 0.28);
  border-radius: 20px;
  padding: 30px;
  background: rgba(15, 20, 41, 0.76);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.radio-pricing-copy {
  align-self: center;
}

.radio-pricing-copy h3 {
  margin: 18px 0 10px;
  font-size: 1.4rem;
}

.radio-pricing-copy p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.radio-pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.radio-pack {
  min-height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px;
  background: rgba(7, 11, 27, 0.62);
  text-align: center;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

.radio-pack:hover {
  border-color: rgba(117, 87, 255, 0.55);
  background: rgba(25, 31, 61, 0.8);
  transform: translateY(-3px);
}

.radio-waves {
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.16em;
}

.radio-pack strong {
  font-size: 0.94rem;
}

.radio-pack small {
  color: var(--muted);
  font-size: 0.63rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(18, 24, 46, 0.84), rgba(9, 13, 29, 0.9));
  transition:
    transform 170ms ease,
    border-color 170ms ease;
}

.guide-card:hover {
  border-color: rgba(117, 87, 255, 0.46);
  transform: translateY(-4px);
}

.guide-card > span {
  margin-bottom: 40px;
  color: var(--primary-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.guide-card h3 {
  font-size: 1.28rem;
}

.guide-card p {
  margin-bottom: 24px;
  font-size: 0.86rem;
}

.guide-card a {
  margin-top: auto;
}

.updates-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(117, 87, 255, 0.32);
  border-radius: 20px;
  padding: 34px;
  background:
    radial-gradient(circle at 4% 50%, rgba(117, 87, 255, 0.15), transparent 25%),
    rgba(14, 20, 40, 0.76);
}

.updates-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(145, 118, 255, 0.3);
  border-radius: 18px;
  background: rgba(117, 87, 255, 0.14);
  color: var(--primary-light);
  font-size: 1.7rem;
  font-weight: 900;
}

.updates-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
}

.updates-panel p:last-child {
  max-width: 780px;
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) 1fr;
  gap: 90px;
  margin-top: 100px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  background: rgba(15, 21, 42, 0.7);
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--primary-light);
  font-size: 1.2rem;
  transition: transform 170ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 22px 0;
  padding: 0 0 22px;
  font-size: 0.85rem;
}

.support-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

.support-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  overflow: hidden;
  border: 1px solid rgba(137, 108, 255, 0.42);
  border-radius: 22px;
  padding: 36px 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 87, 255, 0.26), transparent 38%),
    linear-gradient(135deg, rgba(30, 35, 73, 0.92), rgba(13, 18, 38, 0.96));
  box-shadow: var(--shadow);
}

.support-orb {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: linear-gradient(145deg, #8969ff, #5334dc);
  color: transparent;
  box-shadow: 0 16px 40px rgba(84, 50, 220, 0.32);
}

.support-orb::before {
  width: 28px;
  height: 21px;
  border: 4px solid white;
  border-radius: 13px 13px 9px 9px;
  content: "";
}

.support-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
}

.support-panel p:last-child {
  max-width: 690px;
  margin-bottom: 0;
}

.support-button {
  min-width: 250px;
}

.site-footer {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
  padding: 54px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.2fr;
  gap: 80px;
}

.footer-main > div:first-child > p {
  max-width: 440px;
  margin: 20px 0 0;
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  color: #737e9b;
  font-size: 0.68rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-heading,
  .hero-grid {
    animation: rise-in 650ms ease both;
  }

  .hero-grid {
    animation-delay: 90ms;
  }

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

@media (max-width: 1200px) {
  .header-inner {
    gap: 18px;
  }

  .desktop-nav {
    gap: 20px;
  }

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

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

  .webradio-panel {
    grid-template-columns: 1fr 0.88fr;
    gap: 34px;
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--container));
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-support {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    min-width: 78px;
    min-height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(17, 23, 44, 0.88);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 49px;
    right: 0;
    width: min(280px, calc(100vw - 32px));
    display: grid;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    background: rgba(10, 14, 31, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu nav a {
    border-radius: 9px;
    padding: 11px 12px;
    color: var(--muted-strong);
    font-size: 0.82rem;
    font-weight: 700;
  }

  .mobile-menu nav a:hover {
    background: rgba(117, 87, 255, 0.12);
    color: white;
  }

  .section {
    width: min(calc(100% - 32px), var(--container));
    padding: 86px 0;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .split-heading,
  .webradio-panel,
  .catalog-heading,
  .faq-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 22px;
  }

  .journey-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .journey-list::before {
    display: none;
  }

  .journey-item {
    min-height: 134px;
  }

  .split-heading,
  .catalog-heading {
    align-items: start;
    gap: 24px;
  }

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

  .webradio-panel {
    padding: 34px;
  }

  .radio-demo {
    width: min(100%, 630px);
    justify-self: center;
  }

  .catalog-heading {
    margin-top: 78px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card > p {
    min-height: auto;
  }

  .plan-highlighted {
    transform: none;
  }

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

  .guide-card {
    min-height: 230px;
  }

  .updates-panel {
    grid-template-columns: auto 1fr;
  }

  .updates-panel .button {
    grid-column: 1 / 3;
    width: fit-content;
    margin-left: 90px;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-intro {
    position: static;
  }

  .support-panel {
    grid-template-columns: auto 1fr;
  }

  .support-button {
    grid-column: 1 / 3;
    width: fit-content;
    margin-left: 90px;
  }

  .footer-main {
    gap: 46px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-heading {
    margin-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .journey-list,
  .feature-grid,
  .extension-grid,
  .radio-pack-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .journey-item {
    min-height: 116px;
  }

  .feature-card {
    min-height: auto;
  }

  .control-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .webradio-panel {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .radio-step {
    grid-template-columns: auto 1fr;
  }

  .radio-step-number {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
  }

  .radio-step-icon {
    margin-left: 10px;
  }

  .inline-actions {
    display: grid;
  }

  .inline-actions .button {
    width: 100%;
  }

  .now-playing {
    grid-template-columns: 110px 1fr;
  }

  .album-cover {
    min-height: 165px;
  }

  .radio-pricing {
    padding: 22px;
  }

  .updates-panel,
  .support-panel {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .updates-panel .button,
  .support-button {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .updates-icon,
  .support-orb {
    width: 54px;
    height: 54px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Grille tarifaire NovaBot et WebRadio */
.pricing-page-section {
  padding-top: 72px;
}

.pricing-plan {
  min-height: 680px;
}

.pricing-name {
  margin-bottom: 22px;
  font-size: 2.25rem;
  letter-spacing: -0.04em;
}

.price-block {
  margin-bottom: 18px;
  border: 1px solid rgba(139, 113, 255, 0.28);
  border-radius: 15px;
  padding: 18px;
  background: rgba(117, 87, 255, 0.09);
}

.promo-label {
  display: block;
  margin-bottom: 7px;
  color: var(--primary-light);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-block > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price-block strong {
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.9rem);
  letter-spacing: -0.055em;
}

.price-block small {
  color: var(--muted-strong);
  font-weight: 700;
}

.price-block p {
  margin: 4px 0 0;
  font-size: 0.76rem;
}

.price-block s,
.annual-price s {
  color: var(--muted);
}

.annual-price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
  padding: 0 2px 20px;
}

.annual-price > span {
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.annual-price > strong {
  color: var(--text);
  font-size: 1.18rem;
}

.annual-price > small {
  grid-column: 1 / 3;
  color: var(--muted);
  font-size: 0.7rem;
}

.radio-offers-section {
  padding-top: 88px;
}

.radio-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.radio-offer-card {
  position: relative;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: 19px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(54, 215, 239, 0.07), transparent 30%),
    linear-gradient(155deg, rgba(20, 27, 51, 0.92), rgba(9, 14, 30, 0.96));
}

.radio-offer-highlighted {
  border-color: rgba(117, 87, 255, 0.62);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.radio-offer-card h3 {
  margin-bottom: 7px;
  font-size: 1.75rem;
}

.radio-capacity {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  border: 1px solid rgba(54, 215, 239, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(54, 215, 239, 0.08);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.radio-offer-card .button {
  margin-top: auto;
}

.license-notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-bottom: 80px;
  border: 1px solid rgba(34, 197, 94, 0.24);
  border-radius: 22px;
  padding: 36px;
  background:
    radial-gradient(circle at 0% 50%, rgba(34, 197, 94, 0.09), transparent 30%),
    rgba(13, 19, 38, 0.86);
}

.license-notice-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.12);
  color: #70e99b;
  font-size: 1.5rem;
  font-weight: 900;
}

.license-notice h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.license-notice p:last-child {
  max-width: 780px;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .radio-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .pricing-plan,
  .radio-offer-card {
    min-height: auto;
  }

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

  .license-notice {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .license-notice .button {
    width: 100%;
  }
}

.home-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.home-price-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(117, 87, 255, 0.5);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 90% 0%, rgba(117, 87, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(21, 27, 54, 0.96), rgba(9, 14, 31, 0.98));
}

.home-price-radio {
  border-color: rgba(54, 215, 239, 0.28);
  background:
    radial-gradient(circle at 90% 0%, rgba(54, 215, 239, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(17, 29, 53, 0.96), rgba(8, 14, 30, 0.98));
}

.home-price-card h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.home-price-card > p {
  max-width: 600px;
}

.home-starting-price {
  display: grid;
  margin: auto 0 26px;
}

.home-starting-price span,
.home-starting-price small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.home-starting-price strong {
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  letter-spacing: -0.06em;
}

@media (max-width: 760px) {
  .home-price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .header-inner,
  .section,
  .site-footer {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .journey-item {
    padding-right: 14px;
    padding-left: 62px;
  }

  .now-playing {
    grid-template-columns: 1fr;
  }

  .album-cover {
    min-height: 250px;
  }

  .radio-demo {
    padding: 12px;
  }

  .radio-demo-header {
    align-items: flex-start;
  }

  .plan-card {
    padding: 26px 22px;
  }

  .recommended {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
  }
}

/* Pages dédiées au référencement */
.seo-hero {
  max-width: 1080px;
  padding-top: 96px;
  padding-bottom: 72px;
  text-align: center;
}

.seo-hero h1 {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

.seo-hero-intro {
  max-width: 790px;
  margin: 0 auto;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.seo-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding-top: 56px;
}

.seo-split h2,
.seo-cta h2,
.seo-band h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seo-card-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.seo-card {
  min-height: 250px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(20, 27, 51, 0.92), rgba(9, 14, 30, 0.94));
}

.seo-card > span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--primary-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.seo-card-title,
.seo-plan-title {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.seo-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #cfc4ff;
  font-weight: 800;
}

.seo-cta,
.seo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 70px;
  border: 1px solid rgba(117, 87, 255, 0.38);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 62px);
  background:
    radial-gradient(circle at 90% 0%, rgba(117, 87, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(18, 24, 48, 0.96), rgba(8, 13, 29, 0.98));
}

.seo-cta > div,
.seo-band > div {
  max-width: 850px;
}

.seo-cta h2,
.seo-band h2 {
  margin-bottom: 12px;
}

.seo-cta p:last-child,
.seo-band p:last-child {
  margin-bottom: 0;
}

.seo-cta .button,
.seo-band .button {
  flex: 0 0 auto;
}

.extension-card .seo-card-title {
  font-size: 1.35rem;
}

.plan-card .seo-plan-title {
  font-size: 2.1rem;
}

@media (max-width: 980px) {
  .seo-split {
    grid-template-columns: 1fr;
  }

  .seo-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .seo-hero {
    padding-top: 62px;
  }

  .seo-card-grid,
  .seo-card-grid-two {
    grid-template-columns: 1fr;
  }

  .seo-card {
    min-height: auto;
  }

  .seo-cta,
  .seo-band {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
    border-radius: 18px;
  }

  .seo-cta .button,
  .seo-band .button {
    width: 100%;
  }
}
