:root {
  --navy: #092c49;
  --navy-deep: #061f34;
  --blue: #176a9a;
  --blue-deep: #0d4f78;
  --sky: #4db7dd;
  --lime: #a8bf3d;
  --lime-dark: #758b22;
  --live: #e64242;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --soft: #f0f4f8;
  --border: #e3eaf1;
  --text: #102334;
  --muted: #607385;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container-max: 1240px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(5rem, 10vw, 9.5rem);
  --shadow-device: 0 42px 80px rgba(9, 44, 73, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  transform: translateY(-1000px);
  clip-path: inset(0 100% 100% 0);
  transition: transform 180ms ease, clip-path 180ms ease;
}

.skip-link:focus {
  transform: none;
  clip-path: none;
}

.shell {
  width: min(100% - (var(--page-gutter) * 2), var(--container-max));
  margin-inline: auto;
}

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

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 1.6rem;
  color: var(--navy);
  font-size: clamp(3.15rem, 6.2vw, 6rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-size: clamp(2.45rem, 4.6vw, 4.75rem);
  font-weight: 760;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
  font-weight: 500;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: var(--lime);
}

.eyebrow-centered {
  justify-content: center;
}

.eyebrow-light {
  color: #a8d8ec;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

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

.button-primary {
  background: var(--lime);
  box-shadow: 0 12px 25px rgba(117, 139, 34, 0.18);
  color: var(--navy-deep);
}

.button-primary:hover {
  background: #b5cd44;
  box-shadow: 0 16px 30px rgba(117, 139, 34, 0.25);
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-small {
  min-height: 46px;
  padding-inline: 1.1rem;
  font-size: 0.9rem;
}

.button-quiet {
  border-color: #d3dde5;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button-quiet:hover {
  border-color: #b9c8d4;
  background: #fff;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(227, 234, 241, 0.88);
  background: rgba(247, 249, 252, 0.9);
  box-shadow: 0 10px 35px rgba(9, 44, 73, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: none;
}

.brand picture {
  display: inline-flex;
}

.brand img {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  box-shadow: 0 5px 14px rgba(9, 44, 73, 0.1);
}

.brand-name {
  display: grid;
  color: var(--navy);
  line-height: 1;
}

.brand-name strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.brand-name small {
  margin-top: 0.27rem;
  color: var(--blue);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: #40586b;
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--lime-dark);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--navy);
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 11px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

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

.mobile-menu-inner {
  display: grid;
  height: calc(100dvh - 79px);
  align-content: start;
  gap: 0.25rem;
  padding: 1.5rem var(--page-gutter) 2rem;
  background: var(--bg);
}

.mobile-menu a:not(.button) {
  display: flex;
  min-height: 55px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.mobile-menu .button {
  margin-top: 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(940px, 100svh);
  padding: clamp(8rem, 13vh, 10rem) 0 3rem;
  background:
    radial-gradient(circle at 78% 38%, rgba(77, 183, 221, 0.15), transparent 28%),
    radial-gradient(circle at 61% 82%, rgba(168, 191, 61, 0.11), transparent 22%),
    linear-gradient(145deg, #fff 0%, var(--bg) 55%, #f1f6fa 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 49%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(23, 106, 154, 0.08), transparent);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(23, 106, 154, 0.08);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 2%;
  right: -14%;
  width: 52vw;
  aspect-ratio: 1;
}

.hero-orbit-two {
  right: 2%;
  bottom: -45%;
  width: 38vw;
  aspect-ratio: 1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 670px;
  align-items: center;
  grid-template-columns: minmax(0, 0.93fr) minmax(500px, 1.07fr);
  gap: clamp(1rem, 4vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 1.8rem;
  color: #4b6477;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.platform-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.platform-icons {
  display: flex;
  gap: 0.3rem;
}

.platform-icons svg {
  width: 25px;
  height: 25px;
  fill: var(--blue-deep);
}

.platform-line > span:last-child {
  display: grid;
  line-height: 1.3;
}

.platform-line strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.platform-line small {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-visual {
  position: relative;
  height: 670px;
}

.device-halo {
  position: absolute;
  top: 14%;
  left: 7%;
  width: 87%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 35%, rgba(77, 183, 221, 0.12) 58%, transparent 70%);
  filter: blur(2px);
}

.hero-device {
  position: absolute;
  margin: 0;
  transition: opacity 400ms ease, transform 600ms var(--ease), filter 400ms ease;
}

.hero-device picture,
.hero-device img {
  width: 100%;
}

.hero-device img {
  filter: drop-shadow(0 32px 30px rgba(9, 44, 73, 0.2));
}

.hero-device figcaption {
  position: absolute;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 25px rgba(9, 44, 73, 0.1);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-device-android {
  top: 5%;
  left: -1%;
  z-index: 1;
  width: min(70%, 435px);
  animation: float-a 8s ease-in-out infinite;
}

.hero-device-android figcaption {
  top: 23%;
  left: 4%;
}

.hero-device-ios {
  right: -7%;
  bottom: -1%;
  z-index: 2;
  width: min(75%, 465px);
  animation: float-b 9s ease-in-out infinite;
}

.hero-device-ios figcaption {
  right: 2%;
  bottom: 23%;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(3px); }
}

.platform-selector {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 2%;
  display: none;
  padding: 0.3rem;
  border: 1px solid rgba(227, 234, 241, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(9, 44, 73, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.platform-selector button {
  min-height: 42px;
  padding: 0.5rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
}

.platform-selector button.is-active {
  background: var(--navy);
  color: #fff;
}

.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #7890a2;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 37px;
  height: 1px;
  background: #91a6b6;
}

/* Capability strip */
.capability-strip {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--border);
  background: #fff;
}

.capability-strip .shell {
  display: grid;
  min-height: 132px;
  align-items: center;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 2rem;
}

.strip-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.capability-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.capability-list li {
  display: grid;
  min-height: 62px;
  place-items: center;
  border-left: 1px solid var(--border);
  color: #536a7b;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.mini-icon,
.calendar-icon {
  display: grid;
  width: 25px;
  height: 25px;
  margin-bottom: 0.45rem;
  place-items: center;
  border-radius: 7px;
  background: var(--soft);
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
}

.apple-icon {
  color: var(--navy);
}

.status-dot {
  width: 9px;
  height: 9px;
  margin: 7px 0 0.8rem;
  border: 3px solid #fbd0d0;
  border-radius: 50%;
  background: var(--live);
  box-sizing: content-box;
}

.wave-icon {
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.2em;
}

.bell-icon,
.bell-card-icon {
  position: relative;
  margin-bottom: 0.7rem;
  color: var(--lime-dark);
}

/* Feature sections */
.feature-section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.feature-grid-reverse {
  grid-template-columns: minmax(440px, 1.05fr) minmax(0, 0.95fr);
}

.feature-copy {
  position: relative;
  z-index: 3;
  max-width: 570px;
}

.feature-copy > p:not(.eyebrow, .control-note, .demo-caption) {
  max-width: 540px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid #dbe8a5;
  border-radius: 50%;
  background: var(--lime-dark);
  box-sizing: content-box;
  content: "";
}

.feature-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

picture,
.feature-visual > img {
  position: relative;
  z-index: 2;
  display: block;
}

.feature-visual picture img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 38px 35px rgba(9, 44, 73, 0.2));
}

.visual-tv > picture,
.visual-tv > img,
.visual-radio > picture,
.visual-radio > img {
  width: min(72%, 445px);
}

.visual-tv::before {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 43% 57% 62% 38% / 48% 38% 62% 52%;
  background: linear-gradient(145deg, #e6f4fa, #edf4f8);
  content: "";
  transform: rotate(-7deg);
}

.signal-rings,
.radio-rings {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 106, 154, 0.13);
  border-radius: 50%;
}

.signal-rings::before,
.signal-rings::after,
.radio-rings::before,
.radio-rings::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
  inset: 13%;
}

.signal-rings::after,
.radio-rings::after {
  inset: 28%;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  padding: 0.85rem 1.1rem 0.85rem 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(9, 44, 73, 0.13);
  line-height: 1.25;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.live-card {
  top: 28%;
  right: 1%;
}

.floating-card > span {
  position: absolute;
  top: 50%;
  left: 1.1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 6px rgba(230, 66, 66, 0.12);
  transform: translateY(-50%);
}

.floating-card strong {
  color: var(--live);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-card small {
  color: var(--navy);
  font-weight: 750;
}

/* Radio */
.feature-radio {
  background: var(--navy);
  color: #fff;
}

.feature-radio::before {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 45vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(77, 183, 221, 0.08);
  filter: blur(60px);
  content: "";
}

.feature-radio h2 {
  color: #fff;
}

.feature-radio h2 em {
  color: #8bd4ef;
}

.feature-radio .feature-copy > p:not(.eyebrow) {
  color: #c2d3df;
}

.check-list-dark li {
  color: #fff;
}

.visual-radio::before {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 183, 221, 0.17), rgba(77, 183, 221, 0.04) 58%, transparent 59%);
  content: "";
}

.radio-rings {
  top: -29vw;
  right: -16vw;
  width: 68vw;
  border-color: rgba(77, 183, 221, 0.08);
}

.sound-bars {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 24%;
  display: flex;
  height: 48px;
  align-items: center;
  gap: 4px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(6, 31, 52, 0.72);
}

.sound-bars i {
  width: 3px;
  height: 35%;
  border-radius: 5px;
  background: var(--lime);
  animation: sound 1.4s ease-in-out infinite alternate;
}

.sound-bars i:nth-child(2n) { height: 75%; animation-delay: -0.6s; }
.sound-bars i:nth-child(3n) { height: 100%; animation-delay: -0.9s; }

@keyframes sound {
  to { height: 90%; }
}

/* Programs */
.feature-programs {
  background: #fff;
}

.programs-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.tag-list span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 750;
}

.reminder-callout {
  display: flex;
  max-width: 430px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--lime);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #f6f9e9;
}

.reminder-callout svg {
  width: 26px;
  flex: none;
  fill: none;
  stroke: var(--lime-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reminder-callout p {
  margin: 0;
  color: #506223;
  font-size: 0.88rem;
  line-height: 1.45;
}

.visual-programs {
  min-height: 580px;
}

.visual-programs > picture,
.visual-programs > img {
  width: min(100%, 680px);
}

.programs-backdrop {
  position: absolute;
  width: 91%;
  aspect-ratio: 1.17;
  border-radius: 42% 58% 38% 62% / 54% 40% 60% 46%;
  background: linear-gradient(145deg, #f0f5f8, #e7f2f7);
  transform: rotate(3deg);
}

/* Notifications */
.feature-notifications {
  background: linear-gradient(160deg, #f4f8fb, #eef4f7);
}

.notification-grid {
  grid-template-columns: minmax(460px, 1fr) minmax(0, 1fr);
}

.visual-notifications > picture,
.visual-notifications > img {
  width: min(70%, 430px);
}

.notification-glow {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 32%, rgba(77, 183, 221, 0.15) 58%, transparent 70%);
}

.demo-notification {
  position: absolute;
  z-index: 4;
  top: 25%;
  left: 1%;
  display: grid;
  width: min(330px, 72%);
  align-items: center;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(9, 44, 73, 0.16);
  grid-template-columns: 42px 1fr auto;
  gap: 0.75rem;
  opacity: 1;
  transition: opacity 300ms ease, transform 400ms var(--ease);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.demo-notification.is-hidden {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
}

.demo-notification img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.demo-notification p {
  display: grid;
  margin: 0;
  line-height: 1.35;
}

.demo-notification strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.demo-notification span,
.demo-notification small {
  color: var(--muted);
  font-size: 0.68rem;
}

.control-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  color: var(--navy);
}

.control-note span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #e9f1be;
  color: #546813;
  font-size: 0.75rem;
}

.notification-demo {
  display: flex;
  max-width: 480px;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 35px rgba(9, 44, 73, 0.06);
}

.notification-demo > div {
  display: grid;
}

.notification-demo strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.notification-demo small,
.demo-caption {
  color: var(--muted);
  font-size: 0.75rem;
}

.switch {
  position: relative;
  width: 58px;
  height: 34px;
  flex: none;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--lime-dark);
  cursor: pointer;
  transition: background 200ms ease;
}

.switch span {
  position: absolute;
  top: 4px;
  left: 28px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(9, 44, 73, 0.2);
  transition: transform 230ms var(--ease);
}

.switch[aria-checked="false"] {
  background: #aab9c4;
}

.switch[aria-checked="false"] span {
  transform: translateX(-24px);
}

.demo-caption {
  margin: 0.55rem 0 0 1.2rem;
}

/* One app */
.one-app {
  padding: var(--section-space) 0;
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.section-heading p:last-child {
  max-width: 610px;
  margin-inline: auto;
  color: var(--muted);
}

.capability-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.capability-card {
  min-height: 240px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.capability-card:hover {
  border-color: #cbd9e3;
  box-shadow: 0 18px 45px rgba(9, 44, 73, 0.08);
  transform: translateY(-3px);
}

.capability-card:nth-child(2) {
  background: var(--navy);
  color: #fff;
}

.capability-card:nth-child(2) h3,
.capability-card:nth-child(2) p {
  color: #fff;
}

.capability-card:nth-child(4) {
  background: #f6f9e9;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 2.2rem;
  place-items: center;
  border-radius: 14px;
  background: #e7f3f8;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.capability-card:nth-child(2) .card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--lime);
}

.capability-card:nth-child(4) .card-icon {
  background: #e8efba;
  color: #586b19;
  font-size: 1.2rem;
}

.capability-card h3 {
  margin-bottom: 0.7rem;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

/* Easy */
.easy-section {
  padding: var(--section-space) 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.easy-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.easy-copy p:last-child {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ease-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cfd9e1;
  list-style: none;
}

.ease-list li {
  display: grid;
  min-height: 76px;
  align-items: center;
  border-bottom: 1px solid #cfd9e1;
  grid-template-columns: 60px 1fr;
}

.ease-list span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ease-list strong {
  color: var(--navy);
  font-size: 1rem;
}

/* Everywhere */
.everywhere {
  position: relative;
  min-height: 700px;
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 50% 110%, rgba(77, 183, 221, 0.22), transparent 36%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: #fff;
  overflow: hidden;
}

.everywhere::before,
.everywhere::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45vw;
  aspect-ratio: 1;
  border: 1px solid rgba(77, 183, 221, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.everywhere::after {
  width: 68vw;
}

.everywhere-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 420px;
  place-items: center;
  text-align: center;
}

.everywhere-inner > picture,
.everywhere-inner > img {
  width: 75px;
  height: 75px;
  margin-bottom: 1.7rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.everywhere-inner picture img {
  width: 75px;
  height: 75px;
}

.everywhere h2 {
  max-width: 1000px;
  margin-inline: auto;
  color: #fff;
}

.everywhere h2 em {
  color: #8bd4ef;
}

.everywhere-inner > p:not(.eyebrow) {
  color: #c7d8e4;
  font-size: 1.1rem;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: #9fb8c9;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(168, 191, 61, 0.12);
}

.world-lines i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90vw;
  height: 180px;
  border-top: 1px solid rgba(77, 183, 221, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
}

.world-lines i:nth-child(2) { transform: translate(-50%, -50%) rotate(9deg); }
.world-lines i:nth-child(3) { width: 40vw; height: 650px; }
.world-lines i:nth-child(4) { width: 70vw; height: 520px; transform: translate(-50%, -50%) rotate(90deg); }

/* Final CTA */
.final-cta {
  position: relative;
  padding: var(--section-space) 0;
  background: #fff;
  overflow: hidden;
}

.cta-wash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1050px, 90vw);
  aspect-ratio: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 183, 221, 0.13), transparent 67%);
  transform: translate(-50%, -50%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}

.final-cta-inner > p:not(.eyebrow, .store-status) {
  max-width: 570px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.store-button {
  display: grid;
  min-width: 215px;
  min-height: 70px;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--navy);
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  grid-template-columns: 34px 1fr;
  gap: 0.8rem;
  text-align: left;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.store-button:hover {
  box-shadow: 0 14px 30px rgba(9, 44, 73, 0.18);
  transform: translateY(-2px);
}

.store-button svg {
  width: 30px;
  fill: #fff;
}

.store-button span {
  display: grid;
}

.store-button small {
  color: #b7cad8;
  font-size: 0.68rem;
  line-height: 1.2;
}

.store-button strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.store-status {
  min-height: 1.5em;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .store-button {
    width: 100%;
    min-width: 0;
  }
}

/* Footer */
.site-footer {
  padding: 4.5rem 0 1.5rem;
  background: var(--navy-deep);
  color: #fff;
}

.footer-main {
  display: grid;
  padding-bottom: 4rem;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.brand-footer .brand-name strong {
  color: #fff;
}

.brand-footer .brand-name small {
  color: #8ab4c9;
}

.footer-brand > p {
  margin: 1.5rem 0 0;
  color: #9eb4c3;
}

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

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

.footer-links strong {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #9eb4c3;
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links small {
  margin-left: 0.3rem;
  color: #7d96a8;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #809aaa;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

/* Reveal system */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms var(--ease);
}

.js .reveal-left {
  transform: translate(-22px, 10px);
}

.js .reveal-right {
  transform: translate(22px, 10px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero content must be visible immediately so the LCP image can paint without waiting for the reveal transition. */
.js .hero .reveal,
.js .hero .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .capability-card:nth-child(2) { transition-delay: 60ms; }
.js .capability-card:nth-child(3) { transition-delay: 120ms; }
.js .capability-card:nth-child(4) { transition-delay: 180ms; }
.js .capability-card:nth-child(5) { transition-delay: 240ms; }

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }

  .hero-visual {
    height: 600px;
  }

  .hero-device-ios {
    right: -3%;
  }

  .capability-cards {
    grid-template-columns: repeat(6, 1fr);
  }

  .capability-card {
    grid-column: span 2;
  }

  .capability-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 9rem;
  }

  .hero-grid,
  .feature-grid,
  .feature-grid-reverse,
  .programs-grid,
  .notification-grid,
  .easy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 1.5rem;
  }

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

  .hero-visual {
    width: min(100%, 660px);
    height: 650px;
    margin-inline: auto;
  }

  .hero-scroll {
    display: none;
  }

  .capability-strip .shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 2rem;
  }

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

  .feature-grid,
  .feature-grid-reverse {
    min-height: 0;
    gap: 3rem;
  }

  .feature-grid-reverse .feature-visual {
    order: 2;
  }

  .feature-copy {
    max-width: 680px;
  }

  .feature-visual {
    min-height: 590px;
  }

  .visual-programs {
    min-height: 500px;
  }

  .feature-radio .feature-grid-reverse .feature-visual,
  .feature-notifications .feature-grid-reverse .feature-visual {
    order: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: clamp(18px, 5.5vw, 28px);
    --section-space: clamp(4.5rem, 20vw, 6rem);
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-name strong {
    font-size: 1rem;
  }

  .mobile-menu-inner {
    height: calc(100dvh - 71px);
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-visual {
    height: min(126vw, 540px);
    margin-top: 1.5rem;
  }

  .hero-device-android {
    top: 4%;
    left: -12%;
    width: 73%;
  }

  .hero-device-ios {
    right: -13%;
    bottom: 6%;
    width: 77%;
  }

  .hero-device figcaption {
    display: none;
  }

  .platform-selector {
    right: 50%;
    bottom: -2%;
    display: flex;
    transform: translateX(50%);
  }

  .hero-visual[data-platform-view="android"] .hero-device-ios,
  .hero-visual[data-platform-view="ios"] .hero-device-android {
    z-index: 0;
    opacity: 0;
    transform: translateY(18px) scale(0.92);
    pointer-events: none;
  }

  .hero-visual[data-platform-view="android"] .hero-device-android,
  .hero-visual[data-platform-view="ios"] .hero-device-ios {
    top: 0;
    right: 50%;
    bottom: auto;
    left: auto;
    z-index: 2;
    width: min(94%, 430px);
    animation: none;
    transform: translateX(50%);
  }

  .capability-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.2rem;
  }

  .capability-list li:nth-child(4) {
    border-left: 0;
  }

  .feature-section {
    padding-bottom: calc(var(--section-space) + 1rem);
  }

  .feature-visual {
    min-height: min(145vw, 600px);
  }

  .visual-tv > picture,
  .visual-tv > img,
  .visual-radio > picture,
  .visual-radio > img,
  .visual-notifications > picture,
  .visual-notifications > img {
    width: min(80%, 390px);
  }

  .visual-programs {
    min-height: min(105vw, 470px);
  }

  .visual-programs > picture,
  .visual-programs > img {
    width: 112%;
    max-width: none;
  }

  .live-card {
    right: -1%;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .demo-notification {
    top: 22%;
    left: -2%;
    width: min(310px, 82%);
  }

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

  .capability-card,
  .capability-card:nth-child(4) {
    min-height: 220px;
    grid-column: auto;
  }

  .capability-card:last-child {
    grid-column: 1 / -1;
  }

  .everywhere {
    min-height: 650px;
  }

  .location-line {
    justify-content: center;
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  h2 {
    font-size: clamp(2.3rem, 12vw, 3rem);
  }

  .brand-name {
    display: none;
  }

  .platform-line {
    align-items: flex-start;
  }

  .hero-visual {
    height: 118vw;
  }

  .capability-list li {
    font-size: 0.65rem;
  }

  .feature-visual {
    min-height: 140vw;
  }

  .sound-bars,
  .live-card {
    transform: scale(0.85);
  }

  .sound-bars {
    right: -8%;
  }

  .live-card {
    right: -7%;
  }

  .notification-demo {
    padding: 0.9rem;
  }

  .notification-demo strong {
    font-size: 0.85rem;
  }

  .capability-cards {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card:last-child {
    min-height: 190px;
    grid-column: auto;
  }

  .card-icon {
    margin-bottom: 1.4rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (min-width: 1600px) {
  :root {
    --container-max: 1380px;
  }

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

  .hero-visual {
    height: 720px;
  }

  .hero-device-android {
    width: 465px;
  }

  .hero-device-ios {
    width: 495px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legal pages */
.legal-page .page-hero {
  padding: clamp(7.5rem, 16vh, 11rem) 0 clamp(2.5rem, 5vh, 3.5rem);
  background:
    radial-gradient(circle at 72% 24%, rgba(77, 183, 221, 0.12), transparent 26%),
    linear-gradient(145deg, #fff 0%, var(--bg) 60%, #f1f6fa 100%);
  text-align: center;
}

.legal-page .page-hero .eyebrow {
  justify-content: center;
  margin-bottom: 1.2rem;
}

.legal-page .page-hero .eyebrow > span {
  background: var(--lime);
}

.legal-page h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.page-subtitle {
  max-width: 760px;
  margin: 0 auto 1rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
  line-height: 1.65;
}

.page-meta {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-areas: "body toc";
  grid-template-columns: minmax(0, 820px) 280px;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4.5rem, 10vw, 7rem);
}

.legal-body {
  grid-area: body;
  max-width: 820px;
}

.toc {
  grid-area: toc;
  position: sticky;
  top: 96px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.toc h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.toc li {
  margin-bottom: 0.45rem;
}

.toc a {
  display: block;
  padding: 0.35rem 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
  border-radius: 6px;
  transition: color 150ms ease, background 150ms ease;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--navy);
  background: var(--soft);
  outline: none;
}

.legal-body section + section {
  margin-top: clamp(2.2rem, 4vw, 3rem);
}

.legal-body h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 740;
  letter-spacing: -0.03em;
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
}

.legal-body p,
.legal-body li {
  color: #334858;
  font-size: clamp(1rem, 0.98rem + 0.18vw, 1.125rem);
  line-height: 1.7;
}

.legal-body p {
  margin: 0 0 1.2rem;
}

.legal-body > section > p:last-child {
  margin-bottom: 0;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
}

.legal-body li {
  margin-bottom: 0.55rem;
}

.legal-body a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--navy);
}

.legal-pending {
  display: inline;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: #fff3cd;
  color: #856404;
  font-size: 0.9em;
  font-weight: 600;
}

/* Footer legal row */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  color: #809aaa;
  font-size: 0.75rem;
}

.footer-legal a {
  color: #9eb4c3;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-areas: "toc" "body";
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .toc {
    position: static;
    max-width: 100%;
  }

  .legal-body {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .legal-page h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .toc {
    padding: 1.25rem;
  }

  .toc a {
    font-size: 0.92rem;
  }

  .legal-body h2 {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

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

