:root {
  --bg: #000000;
  --bg-soft: #0d0d0d;
  --panel: rgba(18, 18, 18, 0.72);
  --panel-strong: rgba(20, 20, 20, 0.88);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f5f0;
  --muted: #b4b4af;
  --muted-soft: #8a8a84;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1220px;
}

.footer-action-link {
  display: block;
  margin: 0 0 14px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.footer-action-link:hover {
  color: var(--text);
}

.form-status {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 1.1rem;
}

.form-modal[hidden] {
  display: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(6px);
}

.form-modal-card {
  position: relative;
  width: min(100%, 560px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.94);
  box-shadow: var(--shadow);
  padding: 24px;
}

.form-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.form-modal-copy {
  margin: 8px 0 16px;
  color: var(--muted);
}

#support-form,
.feedback-form {
  display: grid;
  gap: 16px;
}

#support-form label,
.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

#support-form input,
#support-form textarea,
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

#support-form input[readonly],
.feedback-form input[readonly] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  cursor: default;
}

.feedback-form textarea {
  resize: vertical;
}

.support-submit {
  margin-top: 4px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font: inherit;
}

.feedback-form .support-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(245, 245, 240, 0.18), rgba(245, 245, 240, 0.075));
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.feedback-form .support-submit:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(245, 245, 240, 0.24), rgba(245, 245, 240, 0.1));
}

.support-page-shell {
  min-height: 100vh;
  overflow: visible;
}

.support-topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 14px;
}

.support-back-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.support-back-link:hover {
  color: var(--text);
}

.support-page-main {
  padding-top: 4px;
}

.feedback-page {
  padding-top: 10px;
}

.feedback-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(500px, 1.22fr);
  align-items: start;
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.84), rgba(8, 8, 8, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.feedback-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 8px 12px 6px;
}

.feedback-intro h1 {
  max-width: 9.5ch;
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.7rem);
  line-height: 0.95;
}

.feedback-intro p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.feedback-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feedback-checklist li {
  position: relative;
  padding-left: 22px;
  color: #d2d3d6;
  line-height: 1.48;
}

.feedback-checklist li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feedback-form {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.24);
}

.field-label {
  color: #d7d8dc;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.feedback-form input:not([type="file"]),
.feedback-form textarea {
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.feedback-form textarea {
  min-height: 136px;
  line-height: 1.5;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: rgba(245, 245, 240, 0.42);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: rgba(245, 245, 240, 0.52);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07);
}

.form-status.is-error {
  color: #ff7b7b;
}

.info-page {
  padding-top: 10px;
}

.info-page-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.info-hero {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 4vw, 46px) 0 26px;
  border-bottom: 1px solid var(--line);
}

.info-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.55rem, 5.7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.info-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.info-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 8, 0.72);
}

.info-card h2 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.info-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--text);
  font-weight: 800;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.info-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 18px 22px 32px;
}

.ambient {
  display: none;
  position: absolute;
  inset: auto;
  width: 420px;
  height: 420px;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.ambient-left {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 62%);
}

.ambient-right {
  top: 220px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
}

.topbar,
.section,
.footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.66);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.topbar-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.topbar-nav a,
.footer-card a {
  color: var(--muted);
  transition: color 160ms ease;
}

.topbar-nav a:hover,
.footer-card a:hover {
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.product-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.3rem;
}

.store-button,
.app-store-badge,
.primary-cta,
.secondary-cta,
.footer-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.app-store-badge {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.app-store-badge img {
  display: block;
  width: auto;
  height: 52px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 34px;
  padding: 44px 0 28px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(2.7rem, 5.7vw, 4.8rem);
  line-height: 0.98;
}

.hero-line {
  display: block;
}

h2 {
  max-width: 13ch;
  font-size: clamp(1.78rem, 3.5vw, 3rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.1rem;
}

.hero-text,
.section-note,
.intel-card p,
.footer-card p,
.footer-col p,
.footer-meta,
.hero-stats span {
  color: var(--muted);
}

.hero-text {
  max-width: min(52ch, 100%);
  margin: 26px 0 34px;
  font-size: 1.08rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
}

.primary-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
}

.hero-store-badge img {
  height: 56px;
}

.hero-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-link-cta span {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  max-width: 470px;
  padding: 0;
  padding-top: 24px;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.intel-card,
.footer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.84), rgba(12, 12, 12, 0.72));
  backdrop-filter: blur(12px);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-stat-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-stat-item span {
  display: block;
  max-width: 18ch;
  line-height: 1.42;
  font-size: 1.06rem;
  color: #bfc1c5;
}

.hero-stat-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: #f7f7f8;
}

.hero-stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-pill {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: end;
  width: min(158%, 920px);
  margin: 0;
  margin-right: clamp(-140px, calc((var(--max-width) - 100vw) / 2), 0px);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
}

.hero-video-audio {
  position: absolute;
  right: clamp(58px, 8.2vw, 112px);
  bottom: clamp(24px, 3vw, 34px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.68);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-video-audio:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(22, 22, 22, 0.78);
}

.hero-video-audio:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.hero-video-audio-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-video-audio-on,
.hero-video-audio.is-unmuted .hero-video-audio-muted {
  display: none;
}

.hero-video-audio.is-unmuted .hero-video-audio-on {
  display: block;
}

.section {
  padding: 88px 0 14px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading.split {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 28px;
}

.section-note {
  margin: 0;
  line-height: 1.7;
}

.showcase-heading {
  justify-items: center;
  text-align: center;
}

.showcase-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
  word-spacing: 0.08em;
}

.intelligence-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.intel-card,
.footer-card {
  padding: 22px;
}

.intel-card p,
.footer-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.carousel-shell {
  position: relative;
  padding: 20px 84px 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.88), rgba(4, 4, 4, 0.94));
  overflow: hidden;
}

.carousel-track {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-slide {
  position: absolute;
  width: min(100%, 860px);
  opacity: 0;
  pointer-events: none;
  transition: transform 420ms ease, opacity 320ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  z-index: 3;
}

.carousel-slide.is-prev,
.carousel-slide.is-next {
  opacity: 0.74;
  z-index: 2;
}

.carousel-slide.is-prev {
  transform: translateX(-62%) scale(0.74) perspective(1000px) rotateY(12deg);
}

.carousel-slide.is-next {
  transform: translateX(62%) scale(0.74) perspective(1000px) rotateY(-12deg);
}

.feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(360px, 1.22fr);
  gap: 26px;
  align-items: stretch;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.11), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(145deg, rgba(20, 22, 26, 0.98), rgba(5, 5, 6, 0.96));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 28%, transparent 68%, rgba(255, 255, 255, 0.045));
  pointer-events: none;
}

.feature-copy,
.feature-visual {
  position: relative;
  z-index: 1;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-copy h3 {
  max-width: 9.5ch;
  margin-top: auto;
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  line-height: 0.96;
}

.feature-copy p {
  max-width: 29ch;
  margin: 0;
  color: #c0c2c7;
  font-size: 1.05rem;
  line-height: 1.58;
}

.feature-visual {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-redshift {
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 60, 70, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(28, 16, 17, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-spectrum {
  background:
    radial-gradient(circle at 72% 36%, rgba(255, 53, 102, 0.24), transparent 26%),
    radial-gradient(circle at 42% 82%, rgba(47, 199, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(19, 16, 21, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-remote {
  background:
    radial-gradient(circle at 60% 42%, rgba(80, 180, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(13, 18, 24, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-tone {
  background:
    radial-gradient(circle at 75% 46%, rgba(80, 255, 177, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(13, 22, 18, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-limiter {
  background:
    radial-gradient(circle at 75% 42%, rgba(255, 232, 140, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(22, 19, 14, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-routing {
  background:
    radial-gradient(circle at 78% 36%, rgba(171, 112, 255, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(16, 15, 24, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-moodpad {
  background:
    radial-gradient(circle at 72% 54%, rgba(158, 122, 255, 0.24), transparent 32%),
    radial-gradient(circle at 42% 82%, rgba(255, 74, 135, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(17, 15, 25, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-array {
  background:
    radial-gradient(circle at 68% 48%, rgba(86, 196, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(12, 19, 26, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-accent {
  background:
    radial-gradient(circle at 75% 46%, rgba(230, 72, 255, 0.18), transparent 25%),
    radial-gradient(circle at 44% 82%, rgba(65, 255, 189, 0.13), transparent 28%),
    linear-gradient(145deg, rgba(15, 17, 22, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-boost {
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 119, 48, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(25, 17, 12, 0.98), rgba(4, 4, 5, 0.96));
}

.feature-liveicon {
  background:
    radial-gradient(circle at 74% 32%, rgba(255, 58, 70, 0.2), transparent 28%),
    radial-gradient(circle at 48% 82%, rgba(106, 186, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(17, 18, 22, 0.98), rgba(4, 4, 5, 0.96));
}

.mini-menubar,
.desktop-strip {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-menubar span,
.desktop-strip span {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.mini-menubar .redshift-dot {
  position: relative;
  border: 0;
  box-shadow: none;
}

.mini-menubar .redshift-dot::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 3px solid rgba(245, 245, 240, 0.78);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.mini-menubar .redshift-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 10px;
  height: 10px;
  border: 3px solid #ff4048;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(255, 64, 72, 0.72);
}

.redshift-orbit {
  position: absolute;
  inset: 86px 0 auto;
  margin: 0 auto;
  width: 176px;
  height: 176px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 64, 72, 0.38);
  background: radial-gradient(circle, rgba(255, 64, 72, 0.2), rgba(255, 64, 72, 0.03) 58%, transparent 62%);
  box-shadow: 0 0 70px rgba(255, 64, 72, 0.22);
}

.mic-lock-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  color: #141414;
}

.mic-lock-icon svg,
.limiter-shield svg {
  width: 62%;
  height: 62%;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blocked-apps {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.blocked-apps span,
.source-pill,
.mode-switch,
.device-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.blocked-apps span {
  padding: 12px 10px;
  text-align: center;
}

.app-volume-visual {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.app-volume-row {
  display: grid;
  grid-template-columns: 34px minmax(110px, 1fr) minmax(160px, 1.3fr);
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.app-volume-row.is-live {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.08);
}

.app-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.app-dot-blue { background: linear-gradient(135deg, #77b6ff, #1c6bff); }
.app-dot-red { background: linear-gradient(135deg, #ff7b8d, #ff2855); }
.app-dot-green { background: linear-gradient(135deg, #9fffd2, #25c875); }
.app-dot-purple { background: linear-gradient(135deg, #c1a0ff, #6f47ff); }

.fake-slider {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.fake-slider span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #d6d9de);
}

.spectrum-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  gap: 16px;
  padding: 28px;
}

.source-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px;
}

.source-pill-active {
  background: linear-gradient(135deg, #ff4f7f, #ff2855);
  border-color: rgba(255, 255, 255, 0.18);
}

.music-note {
  font-size: 1.5rem;
}

.compass-dot {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.eq-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
}

.eq-label {
  color: #f5f5f0;
  font-size: 1.35rem;
  font-weight: 850;
}

.eq-bars,
.limiter-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 120px;
  gap: 10px;
}

.eq-bars span,
.limiter-bars span {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.24));
}

.remote-visual {
  display: grid;
  grid-template-columns: 0.75fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px;
}

.phone-card,
.mac-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 28px 18px;
  border-radius: 34px;
}

.phone-top,
.phone-row,
.phone-slider,
.phone-buttons span,
.mac-panel-line,
.popup-row {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.phone-top {
  width: 54px;
  height: 8px;
  margin: 0 auto 8px;
  opacity: 0.7;
}

.phone-row {
  height: 54px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-slider {
  height: 8px;
}

.phone-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.phone-buttons span {
  height: 34px;
  opacity: 0.22;
}

.connect-dots {
  display: flex;
  gap: 10px;
}

.connect-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

.mac-card {
  min-height: 210px;
  padding: 24px;
}

.mac-title {
  margin-bottom: 34px;
  color: #f5f5f0;
  font-weight: 850;
  text-align: center;
}

.mac-panel-line {
  height: 48px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.mac-panel-line.short {
  width: 70%;
}

.tone-visual {
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 30px;
}

.volume-ring {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 0 48%, transparent 50%),
    conic-gradient(#49ffd1 0 64%, rgba(255, 255, 255, 0.13) 64% 100%);
  color: #f5f5f0;
  font-size: 2.7rem;
  font-weight: 850;
}

.tone-wave {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 62px;
}

.tone-wave span {
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #49ffd1);
}

.tone-wave span:nth-child(1) { height: 18px; }
.tone-wave span:nth-child(2) { height: 34px; }
.tone-wave span:nth-child(3) { height: 56px; }
.tone-wave span:nth-child(4) { height: 44px; }
.tone-wave span:nth-child(5) { height: 28px; }
.tone-wave span:nth-child(6) { height: 16px; }

.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 320px);
  padding: 5px;
  border-radius: 999px;
}

.mode-switch span {
  padding: 12px 20px;
  text-align: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.44);
  font-weight: 850;
}

.mode-switch .selected {
  color: #111;
  background: rgba(255, 255, 255, 0.9);
}

.limiter-visual {
  display: grid;
  place-items: center;
  padding: 30px;
}

.limiter-shield {
  position: absolute;
  top: 30px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  color: #151515;
}

.limiter-bars {
  position: relative;
  width: min(100%, 390px);
  height: 240px;
  padding-top: 38px;
}

.limiter-bars span {
  background: linear-gradient(180deg, #ffe98a, rgba(255, 255, 255, 0.22));
}

.limit-line {
  position: absolute;
  left: 52px;
  right: 52px;
  top: 44%;
  height: 2px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.28);
}

.routing-visual {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 12px;
  padding: 28px;
}

.device-column {
  display: grid;
  gap: 12px;
}

.device-title {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.device-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.device-pill.active {
  color: #101010;
  background: rgba(255, 255, 255, 0.9);
}

.route-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #a779ff, rgba(255, 255, 255, 0.2));
}

.native-visual {
  min-height: 330px;
  background:
    radial-gradient(circle at 58% 15%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.desktop-strip span:nth-child(1) { width: 18px; height: 18px; }
.desktop-strip span:nth-child(2) { width: 28px; height: 18px; border-radius: 5px; }
.desktop-strip span:nth-child(3) {
  position: relative;
  width: 27px;
  height: 27px;
  border: 0;
  box-shadow: none;
}

.desktop-strip span:nth-child(3)::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 3px solid rgba(245, 245, 240, 0.76);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.desktop-strip span:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(245, 245, 240, 0.86);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(245, 245, 240, 0.22);
}
.desktop-strip span:nth-child(4) { width: 18px; height: 28px; border-radius: 8px; }
.desktop-strip span:nth-child(5) { width: 26px; height: 26px; }

.menu-popup-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  min-height: 215px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.popup-header {
  margin-bottom: 20px;
  text-align: center;
  color: #f5f5f0;
  font-weight: 850;
}

.popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.popup-grid span {
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.popup-row {
  height: 34px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.popup-row.short {
  width: 66%;
}

.moodpad-visual {
  display: grid;
  place-items: center;
  padding: 28px;
}

.moodpad-surface {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 38px;
  background:
    radial-gradient(circle at 66% 64%, rgba(166, 139, 255, 0.42), transparent 16%),
    radial-gradient(circle at 32% 72%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 60px rgba(0, 0, 0, 0.28);
}

.mood-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
}

.mood-lens-pill {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.mood-warm {
  top: 24px;
  left: 22px;
}

.mood-clean {
  top: 24px;
  right: 22px;
}

.mood-vocal {
  left: 22px;
  bottom: 24px;
}

.mood-lift {
  right: 22px;
  bottom: 24px;
}

.mood-cross::before,
.mood-cross::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.09);
}

.mood-cross::before {
  top: 50%;
  left: 16%;
  right: 16%;
  height: 1px;
}

.mood-cross::after {
  left: 50%;
  top: 16%;
  bottom: 16%;
  width: 1px;
}

.mood-thumb {
  position: absolute;
  left: 63%;
  top: 64%;
  width: 38px;
  height: 38px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(166, 139, 255, 0.28);
  box-shadow: 0 0 34px rgba(166, 139, 255, 0.58);
}

.array-visual {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  gap: 10px;
  padding: 30px;
}

.array-app-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 30px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  color: #f5f5f0;
}

.array-lines {
  display: grid;
  gap: 28px;
}

.array-lines span {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), #57c4ff, rgba(255, 255, 255, 0.36));
}

.array-output-stack {
  display: grid;
  gap: 14px;
}

.array-output {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.array-output.active {
  color: #101010;
  background: rgba(255, 255, 255, 0.9);
}

.accent-visual {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 30px;
}

.accent-devices {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: end;
}

.accent-mac-card,
.accent-phone-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 53, 135, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.06);
}

.accent-phone-card {
  min-height: 210px;
  border-radius: 30px;
}

.accent-device-title {
  color: #f5f5f0;
  font-weight: 850;
}

.accent-row {
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 53, 135, 0.72));
}

.accent-row.short {
  width: 70%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(65, 255, 189, 0.68));
}

.accent-hue-bar {
  position: relative;
  height: 26px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, #ff3d3d, #ffed3d, #46ff84, #36c7ff, #5847ff, #ff43d1, #ff3d3d);
}

.accent-hue-bar span {
  position: absolute;
  top: -8px;
  left: 64%;
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.24);
}

.boost-visual {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  padding: 30px;
}

.boost-meter {
  position: relative;
  width: min(100%, 410px);
  height: 120px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 36px;
}

.boost-meter span {
  width: 92px;
  border-radius: 24px 24px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 126, 57, 0.34));
}

.boost-before {
  height: 42%;
  opacity: 0.42;
}

.boost-after {
  height: 94%;
  box-shadow: 0 0 36px rgba(255, 126, 57, 0.42);
}

.boost-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.boost-wave {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
}

.boost-wave span {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #ff8b43);
}

.boost-wave span:nth-child(1) { height: 18px; }
.boost-wave span:nth-child(2) { height: 28px; }
.boost-wave span:nth-child(3) { height: 44px; }
.boost-wave span:nth-child(4) { height: 54px; }
.boost-wave span:nth-child(5) { height: 44px; }
.boost-wave span:nth-child(6) { height: 28px; }
.boost-wave span:nth-child(7) { height: 18px; }

.liveicon-visual {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 36px;
  padding: 30px;
}

.liveicon-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: min(100%, 430px);
  min-height: 82px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
}

.liveicon-bar span {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.liveicon-muted {
  position: relative;
}

.liveicon-muted::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 50%;
  height: 3px;
  transform: rotate(-42deg);
  background: #ff4652;
  border-radius: 999px;
}

.liveicon-spectrum {
  border-radius: 8px;
  border-color: transparent;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 4px, transparent 4px 8px);
}

.liveicon-boost {
  border-color: #ff8b43;
  box-shadow: 0 0 22px rgba(255, 139, 67, 0.5);
}

.liveicon-output {
  border-radius: 9px;
}

.liveicon-red {
  position: relative;
  border-color: transparent;
  box-shadow: 0 0 30px rgba(255, 70, 82, 0.5);
}

.liveicon-red::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 3px solid #ff4652;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.liveicon-red::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 10px;
  height: 10px;
  border: 3px solid #ff4652;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.liveicon-caption-card {
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid rgba(255, 70, 82, 0.24);
  border-radius: 22px;
  background: rgba(255, 70, 82, 0.08);
  text-align: center;
}

.liveicon-caption-card strong {
  color: #f5f5f0;
  font-size: 1.35rem;
}

.liveicon-caption-card span {
  color: #c0c2c7;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.carousel-control.prev { left: 24px; }
.carousel-control.next { right: 24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.dot.is-active {
  background: rgba(255, 255, 255, 0.96);
}

.intelligence-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.intelligence .section-heading {
  justify-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.intelligence .section-heading h2 {
  max-width: none;
}

.intel-card {
  padding: 22px 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(7, 7, 7, 0.9));
}

.intel-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 28px rgba(0, 0, 0, 0.26);
}

.intel-icon svg {
  width: 24px;
  height: 24px;
  stroke: rgba(248, 248, 248, 0.96);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intel-card h3 {
  font-size: clamp(1.1rem, 1.05vw, 1.32rem);
  line-height: 1.18;
}

.intel-card p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.45;
  color: #b7b9bc;
}

.footer {
  padding-bottom: 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  margin-bottom: 24px;
}

.footer-top h2 {
  max-width: 11ch;
  font-size: clamp(2.05rem, 3.4vw, 3.6rem);
}

.footer-top .section-note {
  font-size: 0.98rem;
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 30px;
}

.footer-card h3 {
  font-size: 1.35rem;
}

.footer-card p {
  font-size: 0.98rem;
}

.footer-card a {
  margin-top: 18px;
  width: fit-content;
  min-height: 42px;
  font-size: 0.96rem;
}

.footer-lower {
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-lower-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.35fr;
  gap: 0;
}

.footer-col {
  padding: 10px 28px 12px;
}

.footer-col h3,
.footer-col h4 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}

.footer-col h3 {
  font-size: 1.42rem;
}

.footer-col h4 {
  font-size: 1.12rem;
}

.footer-col p {
  margin: 0 0 18px;
  color: #b6b8bc;
  line-height: 1.55;
  font-size: 0.98rem;
}

.footer-brand-tagline {
  white-space: nowrap;
}

.footer-contact-line {
  margin-top: -6px;
  font-size: 0.92rem;
}

.footer-col .footer-contact-line a {
  display: inline;
  margin: 0;
  color: #f5f5f0;
}

.footer-support-col,
.footer-company-col {
  padding-left: 48px;
}

.footer-col a,
.footer-col .footer-action-link {
  display: block;
  margin: 0 0 14px;
  color: #d8d9dd;
  font-size: 0.95rem;
}

.footer-newsletter-col p {
  margin-bottom: 16px;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(9, 9, 9, 0.9);
}

.newsletter-row input {
  width: 100%;
  min-height: 56px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0 20px;
  font-family: inherit;
  font-size: 0.95rem;
}

.newsletter-row input::placeholder {
  color: #8f9196;
}

.newsletter-row button {
  min-height: 56px;
  min-width: 64px;
  border: 0;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.footer-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  color: #8f9196;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .hero,
  .section-heading.split,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-frame {
    justify-self: stretch;
    width: 100%;
    margin-right: 0;
  }

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

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

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

  .feedback-intro h1 {
    max-width: 13ch;
  }

  .info-grid,
  .info-grid-three {
    grid-template-columns: 1fr;
  }

  .footer-lower-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col {
    padding: 18px 0 10px;
  }

  .footer-support-col,
  .footer-company-col {
    padding-left: 0;
  }

  .footer-brand-col {
    border-top: 0;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 14px 14px 24px;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .topbar-actions {
    justify-self: start;
  }

  .brand-lockup {
    gap: 12px;
  }

  .product-name {
    font-size: 1.24rem;
  }

  .app-store-badge img {
    height: 48px;
  }

  .hero,
  .section {
    padding-top: 52px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.9rem);
  }

  h2 {
    max-width: none;
  }

  .carousel-shell {
    padding: 62px 18px 14px;
  }

  .carousel-control {
    top: 18px;
    transform: none;
  }

  .carousel-control.prev { left: 18px; }
  .carousel-control.next { right: 18px; }

  .carousel-track {
    min-height: 300px;
  }

  .carousel-slide {
    width: min(100%, 92vw);
  }

  .carousel-slide.is-prev,
  .carousel-slide.is-next {
    opacity: 0;
    pointer-events: none;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .feature-copy {
    min-height: 210px;
  }

  .feature-copy h3 {
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .feature-copy p {
    font-size: 0.98rem;
  }

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

  .app-volume-row {
    grid-template-columns: 28px 1fr;
  }

  .app-volume-row .fake-slider {
    grid-column: 1 / -1;
  }

  .spectrum-visual,
  .routing-visual,
  .remote-visual,
  .array-visual,
  .accent-devices {
    grid-template-columns: 1fr;
  }

  .array-lines {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .array-lines span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  .liveicon-bar {
    gap: 14px;
    padding: 0 18px;
  }

  .liveicon-bar span {
    width: 26px;
    height: 26px;
  }

  .connect-dots {
    justify-content: center;
  }

  .route-line {
    width: 2px;
    height: 44px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), #a779ff, rgba(255, 255, 255, 0.2));
  }

  .blocked-apps {
    left: 22px;
    right: 22px;
    grid-template-columns: 1fr;
  }

  .redshift-orbit {
    top: 74px;
    width: 140px;
    height: 140px;
  }

  .mic-lock-icon {
    width: 82px;
    height: 82px;
  }

  .hero-stat-item strong {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  .hero-stat-item span {
    font-size: 1.05rem;
  }

  .hero-stat-icon {
    width: 46px;
    height: 46px;
  }

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

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

  .footer-col h3 {
    font-size: 1.32rem;
  }

  .footer-col h4 {
    font-size: 1.08rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.95rem;
  }

  .newsletter-row input {
    min-height: 56px;
    font-size: 0.95rem;
  }

  .newsletter-row button {
    min-height: 56px;
    min-width: 62px;
  }

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

  .support-back-link {
    justify-self: start;
  }

  .feedback-panel {
    padding: 20px;
    border-radius: 24px;
  }

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