:root {
  --bg: #020813;
  --panel: rgba(7, 24, 42, .82);
  --panel-strong: rgba(8, 31, 54, .94);
  --line: rgba(94, 185, 255, .32);
  --line-soft: rgba(255, 255, 255, .14);
  --text: #f4f8ff;
  --muted: #b9c8d9;
  --blue: #12aefc;
  --blue-deep: #116ddf;
  --amber: #ffb53e;
  --green: #38d6a2;
  --danger: #ff6a4a;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 22% 10%, rgba(19, 169, 255, .18), transparent 27rem),
    radial-gradient(circle at 80% 24%, rgba(255, 181, 62, .1), transparent 20rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.75) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(58,183,255,.6) 0 1px, transparent 1.4px);
  background-position: 0 0, 33px 69px;
  background-size: 120px 120px, 170px 170px;
  opacity: .22;
  z-index: -3;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(100%, 1450px);
  transform: translateX(-50%);
  z-index: 30;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 14px clamp(24px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(2, 8, 19, .92), rgba(2, 8, 19, .5) 78%, transparent);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 122px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(18, 174, 252, .35));
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 14px 0;
  color: #ffffff;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.download-top,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 7px;
  border: 1px solid rgba(67, 178, 255, .65);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  background: rgba(5, 23, 42, .82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.download-top,
.btn.primary {
  border-color: rgba(54, 166, 255, .9);
  background: linear-gradient(180deg, #197ff3, #0f5ec4);
  box-shadow: 0 16px 34px rgba(9, 103, 216, .28), inset 0 1px 0 rgba(255,255,255,.18);
}

.download-icon,
.windows-mark {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.download-icon {
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.download-icon::before {
  content: "";
  display: block;
  width: 3px;
  height: 12px;
  background: currentColor;
  transform: rotate(45deg) translate(2px, -4px);
}

.windows-mark {
  background:
    linear-gradient(#fff 0 0) left top / 47% 47% no-repeat,
    linear-gradient(#fff 0 0) right top / 47% 47% no-repeat,
    linear-gradient(#fff 0 0) left bottom / 47% 47% no-repeat,
    linear-gradient(#fff 0 0) right bottom / 47% 47% no-repeat;
}

.download-icon.image-download-icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border: 0;
  transform: none;
  background: url("assets/home-icons/telechargement.png") center / 190% auto no-repeat;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.45));
}

.download-icon.image-download-icon::before {
  content: none;
}

.hero-actions .image-download-icon,
.radio-cta .image-download-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 870px;
  padding: 168px clamp(24px, 4vw, 56px) 58px;
  border-bottom: 1px solid var(--line-soft);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,8,19,.94) 0%, rgba(2,8,19,.82) 25%, rgba(2,8,19,.22) 58%, rgba(2,8,19,.88) 100%),
    linear-gradient(180deg, rgba(2,8,19,.08) 0%, rgba(2,8,19,.68) 74%, var(--bg) 100%),
    url("assets/hero-earth.png") right 36% top 118px / min(920px, 62vw) auto no-repeat;
  filter: saturate(1.08);
  z-index: -2;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(390px, 500px) minmax(600px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  max-width: 1450px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(44px, 4.45vw, 64px);
  line-height: .98;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,.55);
}

h1 span {
  display: block;
  color: var(--blue);
}

h1 .title-line {
  color: #fff;
  white-space: nowrap;
}

.lead {
  margin-bottom: 26px;
  font-size: clamp(19px, 2vw, 28px);
}

.intro {
  max-width: 410px;
  margin-bottom: 32px;
  color: var(--text);
  font-size: 17px;
}

.quick-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 430px;
  margin-bottom: 34px;
}

.quick-features div {
  min-width: 0;
  text-align: center;
}

.quick-features strong {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  color: #eaf4ff;
}

.line-icon.weather::before,
.line-icon.storm::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 17px;
  width: 29px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 0 0 18px 18px;
}

.line-icon.weather::after,
.line-icon.storm::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--bg);
}

.line-icon.storm {
  color: #cde4ff;
}

.line-icon.storm::before {
  border-color: #cde4ff;
  border-top-color: transparent;
}

.line-icon.storm i,
.line-icon.storm::after {
  color: var(--amber);
}

.line-icon.storm::after {
  left: 18px;
  top: 23px;
  width: 10px;
  height: 17px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, transparent 0 38%, var(--amber) 39% 62%, transparent 63%);
}

.line-icon.clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.clock::before,
.line-icon.clock::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 9px;
  width: 2px;
  height: 13px;
  background: currentColor;
  transform-origin: bottom;
}

.line-icon.clock::after {
  height: 10px;
  transform: rotate(120deg);
}

.line-icon.alert {
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-bottom: 38px solid currentColor;
}

.line-icon.alert::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 4px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 29px solid var(--panel-strong);
}

.line-icon.alert::after {
  content: "!";
  position: absolute;
  left: -3px;
  top: 12px;
  color: var(--amber);
  font-weight: 900;
}

.line-icon.radio::before,
.line-icon.radio::after {
  content: "";
  position: absolute;
  inset: 5px 9px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.line-icon.radio::after {
  inset: 0 2px;
  opacity: .72;
}

.line-icon.radio {
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-color: transparent;
}

.line-icon.radio span,
.line-icon.radio::selection {
  display: none;
}

.line-icon.layers::before,
.line-icon.layers::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 18px;
  border: 2px solid currentColor;
  transform: rotate(30deg) skew(-26deg);
}

.line-icon.layers::before {
  top: 5px;
}

.line-icon.layers::after {
  top: 18px;
  opacity: .7;
}

.line-icon.image-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 0;
  color: inherit;
}

.line-icon.image-icon::before,
.line-icon.image-icon::after {
  content: none;
}

.line-icon.image-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(72, 172, 255, .25));
}

.feature-card .line-icon.image-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-actions .primary {
  min-width: 256px;
  justify-content: flex-start;
}

.btn small {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.btn.ghost {
  min-width: 160px;
}

.btn.outline {
  background: rgba(2, 12, 24, .75);
  color: #58c8ff;
}

.btn:hover,
.download-top:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(18, 174, 252, .18), inset 0 1px 0 rgba(255,255,255,.15);
}

.version {
  color: #9fb1c4;
  font-size: 12px;
}

.dashboard-shell {
  min-width: 0;
  border: 1px solid rgba(128, 205, 255, .34);
  border-radius: 13px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(5, 20, 36, .78), rgba(2, 11, 22, .9));
  box-shadow: 0 30px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
}

.app-screenshot-shell {
  overflow: hidden;
  padding: 10px;
  margin-top: 72px;
}

.app-screenshot-shell .dashboard-topbar,
.app-screenshot-shell .dashboard-body,
.app-screenshot-shell .dashboard-clock {
  display: none;
}

.app-screenshot {
  width: 100%;
  aspect-ratio: 2607 / 1470;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(112, 192, 255, .2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-left: 180px;
  margin-bottom: 10px;
}

.dashboard-topbar div,
.dashboard-clock div {
  min-width: 0;
  padding: 7px 8px;
  background: rgba(2, 12, 24, .74);
  border: 1px solid rgba(117, 189, 242, .16);
  text-align: center;
}

.dashboard-topbar small,
.dashboard-clock small,
.dashboard-topbar span,
.dashboard-clock span {
  display: block;
  color: #8fa6ba;
  font-size: 10px;
}

.dashboard-topbar strong,
.dashboard-clock strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 172px minmax(320px, 1fr) 130px;
  gap: 10px;
  align-items: stretch;
}

.mini-panel {
  border: 1px solid rgba(124, 198, 255, .22);
  border-radius: 8px;
  background: rgba(3, 13, 25, .82);
  padding: 14px;
}

.moon-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.moon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 35%, #4a5d70, #101924 58%, #02050a 59%);
  box-shadow: inset -8px 0 11px rgba(0,0,0,.75);
}

.mini-panel strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.mini-panel small {
  color: #a4b8cc;
  font-size: 10px;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
  color: #aabfd2;
  font-size: 10px;
}

dd {
  margin: 0;
  color: #fff;
  text-align: right;
}

.layers-list {
  margin: 18px 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.layers-list li,
.storm-list p {
  margin: 6px 0;
  color: #c8d5e2;
  font-size: 11px;
}

.layers-list span,
.storm-list span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border: 1px solid var(--blue);
  border-radius: 2px;
}

.storm-list p:first-of-type span {
  border-color: var(--danger);
  background: var(--danger);
}

.storm-list p:last-of-type span {
  border-color: var(--amber);
  background: var(--amber);
}

.world-map {
  position: relative;
  overflow: hidden;
  min-height: 356px;
  border: 1px solid rgba(49, 154, 234, .28);
  border-radius: 10px;
  background: #041424;
}

.world-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 43% 47%, transparent 0 34%, rgba(2,8,19,.14) 44%, rgba(2,8,19,.64) 100%),
    linear-gradient(180deg, rgba(3, 16, 31, .1), rgba(3, 16, 31, .35));
  pointer-events: none;
}

.world-map img {
  width: 100%;
  height: 100%;
  min-height: 356px;
  object-fit: cover;
  object-position: 52% 44%;
  filter: saturate(1.1) contrast(1.05);
}

.city {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 70px;
  padding: 7px 9px;
  border: 1px solid rgba(62, 190, 255, .42);
  border-radius: 5px;
  background: rgba(2, 9, 18, .74);
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.city b {
  color: #fff;
  font-size: 10px;
}

.los-angeles { left: 5%; top: 38%; }
.new-york { left: 20%; top: 26%; }
.paris { left: 46%; top: 29%; }
.tokyo { right: 8%; top: 36%; }
.singapore { right: 12%; bottom: 22%; }

.pulse {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(255, 181, 62, .65);
  animation: pulse 2.8s infinite;
}

.pulse.one { left: 43%; top: 40%; }
.pulse.two { left: 72%; top: 52%; animation-delay: .9s; }
.pulse.three { left: 17%; top: 56%; animation-delay: 1.6s; }

@keyframes pulse {
  70% { box-shadow: 0 0 0 16px rgba(255,181,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,181,62,0); }
}

.sun-badge {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(255, 181, 62, .9);
}

meter {
  width: 100%;
  height: 8px;
  margin-top: 8px;
}

.dashboard-clock {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
  max-width: 560px;
  margin: 10px auto 0;
  border: 1px solid rgba(18, 174, 252, .45);
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-clock .main-clock {
  border-color: rgba(18, 174, 252, .8);
  background: linear-gradient(180deg, rgba(5, 28, 50, .9), rgba(2, 14, 27, .96));
}

.dashboard-clock .main-clock strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 300;
}

.feature-section,
.showcase-pricing,
.about-band,
.site-footer {
  max-width: 1450px;
  margin: 0 auto;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}

.feature-section {
  padding-top: 42px;
  padding-bottom: 32px;
}

.section-title {
  display: grid;
  grid-template-columns: 38px auto 38px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.section-title span {
  height: 3px;
  background: var(--blue);
}

.section-title h2,
.showcase h2,
.about-band h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  text-transform: uppercase;
}

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

.feature-card,
.price-card {
  min-width: 0;
  border: 1px solid rgba(92, 186, 255, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 37, 62, .9), rgba(5, 19, 35, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.feature-card {
  min-height: 250px;
  padding: 28px 24px;
  text-align: center;
}

.feature-card .line-icon {
  margin-bottom: 18px;
  color: #cfe5ff;
}

.feature-card h3,
.price-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-card p,
.showcase p,
.about-band p,
.price-card p {
  color: #d1dce8;
}

.showcase-pricing {
  display: grid;
  grid-template-columns: .86fr 1.3fr;
  gap: 36px;
  padding-top: 30px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.showcase h2 {
  max-width: 420px;
  margin-bottom: 28px;
}

.capture-frame {
  overflow: hidden;
  border: 1px solid rgba(100, 194, 255, .38);
  border-radius: 8px;
  background: rgba(2, 11, 22, .86);
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}

.capture-bar {
  height: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 18px 50%, #ec6262 0 4px, transparent 5px),
    radial-gradient(circle at 34px 50%, #f5bd47 0 4px, transparent 5px),
    radial-gradient(circle at 50px 50%, #38d693 0 4px, transparent 5px),
    rgba(0,0,0,.28);
}

.capture-content {
  position: relative;
  height: 250px;
}

.capture-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .78;
}

.capture-content span {
  position: absolute;
  padding: 5px 8px;
  border: 1px solid rgba(75, 185, 255, .55);
  border-radius: 4px;
  background: rgba(1, 8, 17, .78);
  color: #fff;
  font-size: 11px;
}

.capture-content span:nth-child(2) { left: 7%; top: 26%; }
.capture-content span:nth-child(3) { left: 42%; top: 18%; }
.capture-content span:nth-child(4) { right: 10%; top: 38%; }
.capture-content span:nth-child(5) { left: 34%; bottom: 12%; }

.showcase .btn {
  margin-top: 10px;
}

.pricing .section-title {
  margin-top: 0;
}

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

.price-card {
  position: relative;
  padding: 28px 22px 22px;
  text-align: center;
}

.price-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 34px rgba(18, 174, 252, .18), inset 0 1px 0 rgba(255,255,255,.1);
}

.ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  min-width: 150px;
  transform: translateX(-50%);
  border-radius: 0 0 7px 7px;
  padding: 4px 12px;
  background: linear-gradient(180deg, #2dbdff, #1378dc);
  color: #031324;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: block;
  margin: 22px 0;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300;
}

.price small {
  font-size: 16px;
}

.price-card ul {
  min-height: 168px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  text-align: left;
  color: #d7e2ef;
  font-size: 13px;
}

.price-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 24px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

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

.about-band {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 42px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 174, 252, .12), transparent 17rem);
}

.about-band img {
  width: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(18, 174, 252, .28));
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.about-stats span {
  display: block;
  color: #dce7f2;
  font-size: 12px;
  text-transform: uppercase;
}

.about-stats b {
  display: block;
  color: #fff;
}

.connect {
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 24px 0;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1d8fff, #0c55b6);
  font-weight: 900;
}

.socials a:nth-child(3) {
  background: linear-gradient(180deg, #e74237, #9b1c15);
}

.socials a:nth-child(4) {
  background: #05080d;
  border: 1px solid rgba(255,255,255,.35);
}

.wide {
  width: min(260px, 100%);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 28px;
  color: #8c9bad;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.promo-band,
.config-section {
  max-width: 1450px;
  margin: 0 auto;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}

.promo-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(90deg, rgba(9, 38, 63, .7), rgba(5, 17, 32, .4), rgba(9, 38, 63, .7));
}

.promo-band span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 181, 62, .55);
  border-radius: 999px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-band h2 {
  margin-bottom: 4px;
  font-size: clamp(22px, 2vw, 30px);
  text-transform: uppercase;
}

.promo-band p {
  margin: 0;
  color: #d1dce8;
}

.config-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.config-grid,
.module-grid,
.capture-list {
  display: grid;
  gap: 18px;
}

.config-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.config-card,
.module-card,
.capture-thumb {
  min-width: 0;
  border: 1px solid rgba(92, 186, 255, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 37, 62, .78), rgba(5, 19, 35, .92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.config-card,
.module-card {
  padding: 22px;
}

.config-card span,
.module-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.config-card h3,
.module-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  text-transform: uppercase;
}

.config-card p,
.module-card p,
.capture-thumb p {
  color: #d1dce8;
}

.module-card strong {
  display: block;
  margin: 18px 0;
  font-size: 28px;
  font-weight: 300;
}

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

.capture-list {
  grid-template-columns: repeat(2, 1fr);
  margin: 18px 0 20px;
}

.capture-thumb {
  overflow: hidden;
}

.capture-thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.capture-thumb div {
  padding: 12px;
}

.capture-thumb h3 {
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.capture-thumb p {
  margin: 0;
  font-size: 12px;
}

.radio-page {
  background:
    radial-gradient(circle at 55% 7%, rgba(18, 174, 252, .12), transparent 23rem),
    radial-gradient(circle at 86% 30%, rgba(255, 181, 62, .08), transparent 18rem),
    var(--bg);
}

.radio-page main {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}

.radio-hero {
  position: relative;
  min-height: 575px;
  margin: 0 calc(clamp(24px, 4vw, 56px) * -1);
  padding: 132px clamp(24px, 4vw, 56px) 36px;
  overflow: hidden;
}

.radio-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 19, .96) 0%, rgba(2, 8, 19, .76) 30%, rgba(2, 8, 19, .12) 62%, rgba(2, 8, 19, .42) 100%),
    linear-gradient(180deg, rgba(2, 8, 19, .14), rgba(2, 8, 19, .28) 68%, var(--bg) 100%),
    url("assets/radio-banner.png") right 10% top 118px / min(940px, 66vw) auto no-repeat;
  z-index: -2;
}

.radio-hero-copy {
  width: min(520px, 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: #c6d3df;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.radio-hero h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.2vw, 60px);
}

.radio-lead {
  margin-bottom: 28px;
  color: var(--blue);
}

.radio-hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(560px, 100%);
  margin-top: 26px;
}

.radio-hero-features div {
  text-align: center;
}

.radio-hero-features strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.radio-hero-features .radio-line-icon {
  width: 66px;
  height: 66px;
}

.radio-line-icon,
.radio-card-icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  color: #d7eaff;
}

.radio-line-icon::before,
.radio-line-icon::after,
.radio-card-icon::before,
.radio-card-icon::after {
  content: none;
}

.radio-line-icon img,
.radio-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.radio-line-icon.antenna::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 10px;
  width: 4px;
  height: 33px;
  background: currentColor;
  border-radius: 4px;
}

.radio-line-icon.antenna::after {
  content: "";
  position: absolute;
  inset: 4px 8px 16px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.radio-line-icon.bars::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 8px;
  width: 6px;
  height: 13px;
  background: currentColor;
  box-shadow: 11px -7px 0 currentColor, 22px -16px 0 currentColor, 33px -25px 0 currentColor;
}

.radio-line-icon.dish::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 8px;
  width: 28px;
  height: 20px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 0 0 24px 24px;
  transform: rotate(-35deg);
}

.radio-line-icon.dish::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-20deg);
}

.radio-line-icon.storm::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 34px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 0 0 20px 20px;
}

.radio-line-icon.storm::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 11px;
  height: 17px;
  background: linear-gradient(135deg, transparent 0 37%, var(--amber) 38% 62%, transparent 63%);
}

.radio-tools,
.radio-frequency,
.radio-community,
.radio-cta {
  border: 1px solid rgba(93, 184, 255, .25);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(5, 22, 39, .74), rgba(3, 14, 27, .9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.radio-tools {
  padding: 26px;
  margin-top: 0;
}

.radio-tools h2,
.radio-community h2 {
  margin-bottom: 26px;
  text-align: center;
  font-size: clamp(22px, 2vw, 27px);
  text-transform: uppercase;
}

.radio-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.radio-tool-card,
.community-grid article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(88, 181, 255, .25);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(8, 35, 59, .8), rgba(3, 14, 26, .72));
}

.radio-tool-card > div,
.community-grid article > div,
.frequency-copy,
.opening-panel {
  min-width: 0;
}

.radio-card-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(87, 168, 255, .35);
  border-radius: 50%;
  background: rgba(10, 42, 70, .34);
  padding: 13px;
}

.radio-card-icon::before,
.radio-card-icon::after {
  content: "";
  position: absolute;
}

.radio-card-icon.target::before {
  inset: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(18, 174, 252, .08);
}

.radio-card-icon.target::after {
  left: 31px;
  top: 11px;
  width: 2px;
  height: 42px;
  background: currentColor;
  box-shadow: -20px 20px 0 -1px currentColor, 20px 20px 0 -1px currentColor;
}

.radio-card-icon.sun::before {
  inset: 21px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -13px 0 -4px currentColor, 0 13px 0 -4px currentColor, 13px 0 0 -4px currentColor, -13px 0 0 -4px currentColor;
}

.radio-card-icon.bell::before {
  left: 20px;
  top: 16px;
  width: 24px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 14px 14px 8px 8px;
}

.radio-card-icon.bell::after {
  left: 17px;
  top: 44px;
  width: 30px;
  border-bottom: 2px solid currentColor;
  box-shadow: 14px 6px 0 -5px currentColor;
}

.radio-card-icon.satellite::before {
  left: 13px;
  top: 13px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
  box-shadow: 24px 0 0 -1px transparent, 27px 0 0 -1px currentColor, 0 27px 0 -1px currentColor, 27px 27px 0 -1px currentColor;
}

.radio-card-icon.satellite::after {
  left: 30px;
  top: 30px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.radio-card-icon.pin::before {
  left: 21px;
  top: 13px;
  width: 22px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.radio-card-icon.pin::after {
  left: 19px;
  bottom: 13px;
  width: 26px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skew(-22deg);
}

.radio-card-icon.clockface::before {
  inset: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.radio-card-icon.clockface::after {
  left: 31px;
  top: 21px;
  width: 2px;
  height: 17px;
  background: currentColor;
  transform-origin: bottom;
  box-shadow: 5px 13px 0 -1px currentColor;
}

.radio-card-icon::before,
.radio-card-icon::after {
  content: none;
}

.radio-tool-card h3,
.community-grid h3,
.opening-panel h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
}

.radio-tool-card p,
.community-grid p,
.radio-cta p,
.opening-panel p {
  color: #c9d7e6;
}

.radio-tool-card a {
  color: var(--blue);
  font-weight: 700;
}

.radio-tool-card a::after {
  content: "›";
  margin-left: 8px;
  font-size: 20px;
}

.radio-frequency {
  display: grid;
  grid-template-columns: 1.08fr 1.25fr .72fr;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 30px;
}

.radio-frequency h2 {
  margin-bottom: 4px;
  font-size: clamp(21px, 2vw, 25px);
  text-transform: uppercase;
}

.check-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 26px;
  color: #e5eef7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 0;
  background: url("assets/icons/check.svg") center / contain no-repeat;
  transform: none;
}

.icon-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.propagation-map {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(74, 169, 238, .32);
  border-radius: 8px;
  background: #06213a;
}

.propagation-map img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.opening-panel {
  align-self: stretch;
  padding: 18px;
  border: 1px solid rgba(84, 178, 244, .24);
  border-radius: 8px;
  background: rgba(5, 22, 39, .7);
}

.opening-panel h3 {
  color: var(--blue);
  font-size: 14px;
}

.opening-panel div {
  display: grid;
  grid-template-columns: 1fr 82px 34px;
  gap: 10px;
  align-items: center;
  margin: 13px 0;
  font-size: 13px;
}

.opening-panel small {
  color: #c3d1de;
}

.opening-panel meter {
  height: 6px;
}

.opening-panel p {
  margin: 28px 0 0;
  font-size: 12px;
}

.radio-community {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 26px;
}

.radio-community::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -4px;
  width: 86px;
  height: 250px;
  opacity: .18;
  background:
    linear-gradient(90deg, transparent 46%, #7fc9ff 47% 53%, transparent 54%),
    linear-gradient(30deg, transparent 0 47%, #7fc9ff 48% 52%, transparent 53%),
    linear-gradient(-30deg, transparent 0 47%, #7fc9ff 48% 52%, transparent 53%);
}

.community-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.community-grid article {
  display: block;
}

.community-grid .btn {
  min-height: 42px;
  margin-top: 4px;
}

.testimonial blockquote {
  margin: 12px 0 22px;
  color: #e7f1fa;
}

.testimonial blockquote::before {
  content: "“";
  color: var(--blue-deep);
  font-size: 54px;
  line-height: 0;
  vertical-align: -22px;
}

.operator {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
}

.operator span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6c16e, #1765a6);
  font-size: 12px;
  font-weight: 900;
}

.operator small {
  color: #aebdcb;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.slider-dots span:first-child {
  background: var(--blue);
}

.radio-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 22px;
  padding: 34px 58px;
  background:
    linear-gradient(90deg, rgba(2, 9, 18, .94), rgba(2, 9, 18, .64), rgba(2, 9, 18, .9)),
    url("assets/radio-banner.png") center 62% / cover no-repeat;
}

.radio-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.6vw, 32px);
  text-transform: uppercase;
}

.radio-cta .btn {
  min-width: 360px;
  justify-content: flex-start;
}

.radio-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 108px auto auto;
  }

  .brand img {
    width: 92px;
  }

  .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero-inner,
  .showcase-pricing {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
  }

  .app-screenshot-shell {
    margin-top: 0;
  }

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

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

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

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

@media (max-width: 900px) {
  .site-header {
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    grid-template-columns: 82px 1fr auto;
    min-height: 76px;
    padding: 10px 18px;
  }

  .brand img {
    width: 66px;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(90, 194, 255, .4);
    border-radius: 7px;
    background: rgba(4, 20, 36, .82);
    padding: 10px;
  }

  .menu-toggle span {
    height: 2px;
    background: #fff;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(90, 194, 255, .35);
    border-radius: 8px;
    background: rgba(3, 14, 27, .96);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .download-top {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 110px;
  }

  .hero-inner {
    gap: 34px;
  }

  .dashboard-shell {
    padding: 10px;
  }

  .dashboard-topbar {
    grid-template-columns: repeat(4, 1fr);
    margin-left: 0;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .mini-panel {
    display: none;
  }

  .world-map,
  .world-map img {
    min-height: 420px;
  }

  .feature-grid,
  .pricing-grid,
  .config-grid,
  .module-grid,
  .about-band {
    grid-template-columns: 1fr;
  }

  .promo-band {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }

  .radio-page main {
    width: 100%;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .radio-hero {
    min-height: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 106px 16px 40px;
  }

  .breadcrumb {
    margin-bottom: 28px;
  }

  .radio-hero-features,
  .radio-tool-grid,
  .community-grid,
  .radio-cta,
  .radio-footer {
    grid-template-columns: 1fr;
  }

  .radio-hero-features div {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .radio-hero-features strong {
    margin-top: 0;
  }

  .radio-tools,
  .radio-community {
    padding: 18px;
  }

  .radio-tools,
  .radio-frequency,
  .radio-community,
  .radio-cta {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .radio-lead,
  .radio-tools h2,
  .radio-tool-card h3,
  .radio-tool-card p,
  .community-grid h3,
  .community-grid p,
  .check-list li {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .radio-tool-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 18px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .radio-card-icon {
    width: 52px;
    height: 52px;
  }

  .radio-frequency {
    padding: 20px;
  }

  .radio-cta {
    padding: 26px 20px;
  }

  .radio-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .radio-footer {
    justify-items: center;
  }
}

@media (max-width: 600px) {
  .radio-page main {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .dashboard-shell {
    min-width: 0;
    max-width: calc(100vw - 32px);
  }

  h1 {
    font-size: 38px;
  }

  h1 .title-line {
    white-space: normal;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(2,8,19,.94) 0%, rgba(2,8,19,.68) 100%),
      linear-gradient(180deg, rgba(2,8,19,.08) 0%, rgba(2,8,19,.68) 74%, var(--bg) 100%),
      url("assets/hero-earth.png") center 130px / 560px auto no-repeat;
  }

  .quick-features {
    grid-template-columns: 1fr;
    width: calc(100vw - 48px);
    max-width: none;
    gap: 12px;
  }

  .hero-actions {
    width: calc(100vw - 48px);
  }

  .quick-features div {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .quick-features strong {
    margin-top: 0;
    overflow-wrap: anywhere;
  }

  .hero-actions .primary,
  .btn.ghost {
    width: 100%;
  }

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

  .dashboard-clock {
    grid-template-columns: 1fr;
  }

  .world-map,
  .world-map img {
    min-height: 330px;
  }

  .city {
    min-width: 62px;
    padding: 5px 7px;
    font-size: 10px;
  }

  .feature-section,
  .showcase-pricing,
  .about-band,
  .promo-band,
  .config-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    grid-template-columns: 24px auto 24px;
    gap: 16px;
  }

  .radio-hero h1 {
    font-size: 38px;
  }

  .radio-hero-bg {
    background:
      linear-gradient(90deg, rgba(2, 8, 19, .9), rgba(2, 8, 19, .48)),
      linear-gradient(180deg, rgba(2, 8, 19, .14), rgba(2, 8, 19, .46) 68%, var(--bg) 100%),
      url("assets/radio-banner.png") center 132px / 600px auto no-repeat;
  }

  .radio-hero-copy {
    max-width: calc(100vw - 32px);
  }

  .radio-hero-features {
    width: calc(100vw - 48px);
  }

  .radio-lead,
  .radio-tools h2,
  .radio-tool-card h3,
  .radio-tool-card p,
  .community-grid h3,
  .community-grid p,
  .check-list li {
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
  }

  .radio-tools,
  .radio-frequency,
  .radio-community,
  .radio-cta {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .radio-tool-grid,
  .community-grid {
    width: 100%;
    max-width: 100%;
  }

  .radio-tool-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .radio-card-icon {
    width: 44px;
    height: 44px;
  }

  .opening-panel div {
    grid-template-columns: 1fr;
  }
}
