:root {
  color-scheme: dark;
  --bg: #020204;
  --bg-soft: #08080d;
  --surface: rgba(15, 15, 22, 0.78);
  --surface-solid: #0d0d13;
  --surface-raised: #13131b;
  --text: #f7f5ff;
  --text-soft: #c6c2d2;
  --muted: #8c8799;
  --border: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(255, 255, 255, 0.18);
  --purple: #8b6cff;
  --pink: #c457ff;
  --blue: #40a6ff;
  --green: #5de4a3;
  --danger: #ff6a88;
  --glow: 0 24px 80px rgba(45, 26, 113, 0.28);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content: min(1180px, calc(100% - 40px));
  font-family: "Space Grotesk", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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


h1,
h2,
h3,
h4,
.brand,
.card-title {
  font-family: "Syne", "Space Grotesk", sans-serif;
}
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

::selection {
  background: rgba(139, 108, 255, 0.45);
  color: #fff;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid #b9a8ff;
  outline-offset: 3px;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #050507;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.stars {
  position: fixed;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  pointer-events: none;
}

.sky-glow {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.sky-glow-one {
  top: -260px;
  left: -220px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(31, 66, 137, 0.25), rgba(29, 20, 88, 0.08) 50%, transparent 72%);
}

.sky-glow-two {
  right: -360px;
  bottom: 6%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(112, 36, 142, 0.18), transparent 68%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--content);
  min-height: 62px;
  margin: 22px auto 0;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(10, 10, 14, 0.74);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-header.scrolled {
  border-color: var(--border-bright);
  background: rgba(8, 8, 12, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  border-radius: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.main-nav a {
  padding: 9px 13px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
}

.header-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.header-download:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.header-download > .cdn-icon,
.button > .cdn-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-download small {
  color: var(--muted);
  font-size: 0.69rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(500px, 0.9fr) minmax(600px, 1.1fr);
  align-items: center;
  gap: clamp(56px, 5vw, 92px);
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100vh - 84px);
  margin: -20px auto 0;
  padding: 150px 0 90px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(139, 108, 255, 0.28);
  border-radius: 999px;
  background: rgba(139, 108, 255, 0.08);
  color: #c9bfff;
  font-size: 0.75rem;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.release-pill:hover {
  border-color: rgba(139, 108, 255, 0.5);
  background: rgba(139, 108, 255, 0.14);
}

.release-pill .cdn-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.release-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(93, 228, 163, 0.8);
}

.eyebrow {
  margin: 0 0 15px;
  color: #a99be8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.6rem, 5.2vw, 5.75rem);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 span,
.section-heading h2 span {
  background: linear-gradient(105deg, #fff 5%, #aa93ff 48%, #4db1ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 580px;
  margin: 27px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 33px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  border-color: rgba(185, 161, 255, 0.38);
  background: linear-gradient(125deg, #7156e9, #963fd3 58%, #2989db);
  box-shadow: 0 12px 35px rgba(111, 71, 214, 0.32), inset 0 1px rgba(255, 255, 255, 0.18);
  color: #fff;
}

.button-primary:hover {
  box-shadow: 0 16px 45px rgba(111, 71, 214, 0.46), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
}

.button-secondary:hover {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.platform-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 0.73rem;
}

.platform-line strong {
  color: var(--text-soft);
  font-weight: 650;
}

.platform-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #55515f;
}

.app-stage {
  left: clamp(16px, 2vw, 36px);
  margin: 0;
  position: relative;
  z-index: 1;
  animation: rise-in 0.85s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
  perspective: 1200px;
}

.app-stage::before {
  position: absolute;
  z-index: -2;
  inset: 11% -8% -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 67, 215, 0.28), rgba(48, 73, 148, 0.12) 38%, transparent 70%);
  content: "";
  filter: blur(26px);
}


.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 19px;
  background: #0a0a10;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.7), 0 0 70px rgba(86, 55, 176, 0.15);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-stage:hover .app-window {
  transform: rotateY(-1deg) rotateX(0deg) translateY(-4px);
}


.real-screen-card.card {
  --bs-card-bg: #0a0a10;
  --bs-card-border-color: rgba(255, 255, 255, 0.15);
  aspect-ratio: 1846 / 1070;
  color: var(--text);
}

.real-screen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.app-stage figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.68rem;
}

.app-stage figcaption .cdn-icon {
  color: #9f8fff;
}


.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: var(--content);
  margin: 0 auto;
  padding: 22px 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
}

.trust-strip > div { display: flex; align-items: baseline; gap: 7px; }
.trust-strip strong { font-size: 1rem; }
.trust-strip span { color: var(--muted); font-size: 0.77rem; }
.trust-strip > i { width: 1px; height: 22px; background: var(--border); }

.performance-note {
  width: var(--content);
  margin: 10px auto 0;
  padding-right: 8px;
  color: #716b7d;
  font-size: 0.65rem;
  line-height: 1.5;
  text-align: right;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 145px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.experience-copy h2,
.faq-heading h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 810;
  letter-spacing: -0.065em;
  line-height: 1;
}

.section-heading > p:last-child,
.experience-copy > p,
.faq-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.bento-card {
  --bs-card-bg: #0d0d14;
  --bs-card-border-color: rgba(255, 255, 255, 0.1);
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  min-height: 340px;
  border-radius: 22px;
  background: linear-gradient(150deg, #11111a, #08080d);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.bento-card:hover {
  border-color: rgba(139, 108, 255, 0.36);
  transform: translateY(-3px);
}

.bento-card .card-body {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.bento-card .card-title {
  margin: 17px 0 10px;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.bento-card .card-text {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ae9dff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.card-kicker .cdn-icon {
  width: 15px;
  height: 15px;
}

.card-wide {
  display: grid;
  grid-column: span 4;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: stretch;
}

.card-copy {
  align-self: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: #baaaff;
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link .cdn-icon {
  width: 14px;
  height: 14px;
}

.integration-visual {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--border);
  background: #09090f;
}

.integration-list {
  --bs-list-group-bg: transparent;
  --bs-list-group-border-color: rgba(255, 255, 255, 0.09);
  width: 100%;
  max-width: 330px;
  gap: 8px;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--bs-list-group-border-color) !important;
  border-radius: 14px !important;
  color: var(--text);
}

.integration-item > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.integration-item strong {
  font-size: 0.8rem;
}

.integration-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.integration-logo {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  background: #15151e;
}

.integration-logo img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.discord-logo {
  background: #5865f2;
}

.discord-logo .cdn-icon {
  filter: invert(1);
}

.integration-item .badge {
  border: 1px solid rgba(139, 108, 255, 0.25);
  background: rgba(139, 108, 255, 0.12);
  color: #c8bdff;
  font-size: 0.58rem;
}

.integration-arrow {
  display: grid;
  height: 18px;
  place-items: center;
}

.integration-arrow .cdn-icon {
  width: 15px;
  height: 15px;
  opacity: 0.45;
}

.active-item {
  border-color: rgba(139, 108, 255, 0.32) !important;
  background: rgba(139, 108, 255, 0.06);
}

.feature-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding: 22px 30px;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.cdn-card-asset {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: invert(68%) sepia(46%) saturate(1220%) hue-rotate(205deg) brightness(103%);
}

.feature-footer > span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.feature-footer small {
  color: var(--muted);
  font-size: 0.68rem;
}

.status-badge {
  width: fit-content;
  border: 1px solid rgba(93, 228, 163, 0.22);
  background: rgba(93, 228, 163, 0.1);
  color: #8ce8b8;
  font-size: 0.62rem;
}

.plugin-list {
  --bs-list-group-bg: transparent;
  --bs-list-group-border-color: var(--border);
  margin-top: auto;
}

.plugin-list .list-group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 30px;
  color: var(--text-soft);
  font-size: 0.76rem;
}

.plugin-list .list-group-item > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.plugin-list .form-check {
  min-height: 0;
  margin: 0;
  padding-left: 2.4em;
}

.plugin-list .form-check-input {
  margin-top: 0;
  cursor: default;
  background-color: #292832;
  border-color: #474450;
}

.plugin-list .form-check-input:checked {
  background-color: #8065ec;
  border-color: #8065ec;
}

.update-card-large {
  display: flex;
}

.update-status {
  margin-top: auto;
  padding: 22px 30px;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.update-status > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.7rem;
}

.update-status strong {
  color: var(--green);
}

.update-status .progress {
  --bs-progress-height: 7px;
  --bs-progress-bg: #25242d;
  margin-bottom: 12px;
}

.update-status .progress-bar {
  width: 100%;
  background: linear-gradient(90deg, #755cf0, #5de4a3);
}

.update-status small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8ce8b8;
  font-size: 0.65rem;
}

.privacy-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.privacy-asset {
  width: 76px;
  height: 76px;
  margin-top: 27px;
}

.local-badge {
  margin-top: auto;
  border: 1px solid rgba(139, 108, 255, 0.24);
  background: rgba(139, 108, 255, 0.1);
  color: #c2b5ff;
  font-size: 0.61rem;
}

.experience-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  min-height: 630px;
  padding: 74px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(18, 17, 28, 0.96), rgba(6, 6, 10, 0.94));
  box-shadow: var(--glow);
}

.experience-panel::before {
  position: absolute;
  top: -40%;
  right: -18%;
  width: 670px;
  height: 670px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 75, 211, 0.2), transparent 66%);
  content: "";
}

.experience-copy { position: relative; z-index: 2; }
.experience-copy h2 { font-size: clamp(2.7rem, 4.5vw, 4.9rem); }
.check-list { display: flex; flex-direction: column; gap: 13px; margin: 29px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--text-soft); font-size: 0.86rem; }
.check-list span { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; border: 1px solid rgba(93, 228, 163, 0.2); border-radius: 7px; background: rgba(93, 228, 163, 0.07); color: var(--green); font-size: 0.68rem; }

.desktop-menu-card {
  --bs-card-bg: #101018;
  --bs-card-border-color: rgba(255, 255, 255, 0.11);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38);
}

.desktop-menu-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-color: var(--border);
  background: #15151e;
}

.desktop-menu-card .card-header > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.desktop-menu-card .card-header strong {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
}

.desktop-menu-card .card-header small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
}

.desktop-menu-card .list-group {
  --bs-list-group-bg: transparent;
  --bs-list-group-border-color: var(--border);
}

.desktop-menu-card .list-group-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.desktop-menu-card .list-group-item:hover {
  background: rgba(139, 108, 255, 0.07);
  color: #fff;
}

.desktop-menu-card .list-group-item .cdn-icon {
  width: 17px;
  height: 17px;
  opacity: 0.72;
}

.desktop-menu-card .danger-item {
  color: #ff9aaf;
}

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

.platform-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 35px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(20, 19, 29, 0.87), rgba(8, 8, 12, 0.86));
  text-align: center;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.platform-card:hover,
.platform-card.recommended {
  border-color: rgba(151, 120, 255, 0.32);
  transform: translateY(-4px);
}

.platform-card.recommended {
  box-shadow: 0 20px 60px rgba(72, 42, 153, 0.15);
}

.platform-icon .cdn-icon {
  width: 36px;
  height: 36px;
}
.platform-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9d3e3;
  font-size: 2.3rem;
}

.windows-icon {
  color: #62a8ff;
}
.apple-icon { font-size: 2.7rem; line-height: 1; }
.linux-icon { color: #c8b9ff; }
.platform-card h3 { margin: 0; font-size: 1.42rem; }
.platform-card p { margin: 9px 0 23px; color: var(--muted); font-size: 0.85rem; }
.platform-button { width: 100%; margin-top: auto; border-color: var(--border); background: rgba(255, 255, 255, 0.05); color: #fff; }
.platform-card.recommended .platform-button { border-color: rgba(150, 119, 255, 0.3); background: linear-gradient(125deg, rgba(113, 86, 233, 0.75), rgba(117, 54, 174, 0.75)); }
.platform-card > small { margin-top: 12px; color: #6f6a79; font-size: 0.68rem; }
.recommended-badge { position: absolute; top: 15px; right: 15px; padding: 5px 8px; border: 1px solid rgba(93, 228, 163, 0.2); border-radius: 999px; background: rgba(93, 228, 163, 0.07); color: #8ce8b8; font-size: 0.6rem; font-weight: 750; }
.download-note { max-width: 680px; margin: 22px auto 0; color: #716c7a; font-size: 0.72rem; line-height: 1.6; text-align: center; }

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  padding-bottom: 145px;
}

.cdn-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  object-fit: contain;
  filter: invert(92%) sepia(8%) saturate(320%) hue-rotate(211deg) brightness(102%);
  vertical-align: -0.12em;
}

.card {
  --bs-card-bg: transparent;
  --bs-card-border-color: var(--border);
  --bs-card-color: var(--text);
  color: var(--text);
}

.btn.button {
  --bs-btn-color: inherit;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: inherit;
  --bs-btn-active-color: inherit;
}

.faq-heading { position: sticky; top: 130px; align-self: start; }
.faq-heading h2 { font-size: clamp(2.7rem, 4.2vw, 4.4rem); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 3px; color: #ded9e7; cursor: pointer; font-size: 1rem; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #777180; font-size: 1.3rem; font-weight: 300; transition: transform 0.2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 24px; padding-right: 50px; color: var(--muted); font-size: 0.86rem; line-height: 1.75; }

.faq-list details p a {
  color: #b9a9ff;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-list details p a:hover { color: #70c4ff; }

.closing-cta {
  position: relative;
  overflow: hidden;
  width: var(--content);
  margin: 0 auto 28px;
  padding: 90px 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(25, 19, 46, 0.94), rgba(7, 7, 12, 0.96));
  text-align: center;
}

.closing-cta::before {
  position: absolute;
  top: -370px;
  left: calc(50% - 360px);
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 77, 214, 0.35), transparent 68%);
  content: "";
}

.closing-cta > * { position: relative; z-index: 1; }
.closing-cta > img { margin: 0 auto 24px; }
.closing-cta h2 { font-size: clamp(3rem, 6vw, 6rem); }
.closing-cta > p:not(.eyebrow) { margin: 18px 0 28px; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  width: var(--content);
  margin: 0 auto;
  padding: 65px 5px 28px;
}

.footer-brand p { margin: 13px 0 0; color: var(--muted); font-size: 0.83rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 11px; }
.footer-links strong { margin-bottom: 4px; color: #e4dfeb; font-size: 0.75rem; }
.footer-links a { color: var(--muted); font-size: 0.75rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; grid-column: 1 / -1; justify-content: space-between; margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--border); color: #625e6a; font-size: 0.67rem; }

.download-dialog {
  width: min(580px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 30px));
  padding: 0;
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;
  background: rgba(13, 13, 19, 0.96);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.75);
  color: var(--text);
  backdrop-filter: blur(28px);
}

.download-dialog::backdrop {
  background: rgba(0, 0, 4, 0.75);
  backdrop-filter: blur(8px);
}

.dialog-shell { position: relative; padding: 30px; }
.dialog-close { position: absolute; top: 17px; right: 17px; display: grid; width: 34px; height: 34px; padding: 0; place-items: center; border: 1px solid var(--border); border-radius: 10px; background: rgba(255, 255, 255, 0.04); color: #96909f; cursor: pointer; font-size: 1.35rem; }
.dialog-close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.dialog-heading { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding-right: 28px; }
.dialog-heading h2 { margin: 0; font-size: 1.5rem; letter-spacing: -0.04em; }
.dialog-heading p:last-child { margin: 6px 0 0; color: var(--muted); font-size: 0.78rem; }
.dialog-heading .eyebrow { margin-bottom: 5px; font-size: 0.58rem; }
.download-options { display: flex; flex-direction: column; gap: 9px; margin-top: 25px; }
.download-option { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--border); border-radius: 13px; background: rgba(255, 255, 255, 0.025); color: inherit; text-decoration: none; transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease; }
.download-option:hover { border-color: rgba(148, 119, 255, 0.35); background: rgba(139, 108, 255, 0.06); transform: translateX(2px); }
.download-option-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: rgba(139, 108, 255, 0.09); color: #b8a7ff; font-size: 0.72rem; font-weight: 800; }
.download-option-icon .cdn-icon {
  width: 18px;
  height: 18px;
}
.download-option span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; }
.download-option strong { font-size: 0.82rem; }
.download-option small { margin-top: 4px; color: var(--muted); font-size: 0.65rem; }
.download-option > .cdn-icon:last-child { color: #777180; font-size: 1rem; }
.dialog-foot { margin: 18px 0 0; color: #686372; font-size: 0.65rem; line-height: 1.55; text-align: center; }
.noscript-banner { position: fixed; z-index: 500; right: 15px; bottom: 15px; left: 15px; padding: 12px 15px; border: 1px solid rgba(255, 191, 87, 0.25); border-radius: 11px; background: #211a0e; color: #f3d69e; font-size: 0.8rem; text-align: center; }

.legal-page .site-header { position: relative; }
.legal-main { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0 100px; }
.legal-main h1 { margin: 0 0 20px; font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.065em; }
.legal-main > p { color: var(--muted); line-height: 1.7; }
.legal-card { margin-top: 40px; padding: 35px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.legal-card h2 { margin: 0 0 13px; font-size: 1.2rem; }
.legal-card p { margin: 0 0 26px; color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.legal-card p:last-child { margin-bottom: 0; }
.error-card { margin-top: 12vh; }

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

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; padding-top: 135px; text-align: center; }
  .hero-copy { max-width: 780px; margin: 0 auto; }
  .hero h1 { margin: 0 auto; }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-actions,
  .platform-line { justify-content: center; }
  .app-stage { left: 0; width: min(860px, 100%); margin: 40px auto 0; }
  .app-window { transform: none; }
  .app-stage:hover .app-window { transform: translateY(-4px); }
  .card-wide { grid-column: span 6; }
  .voice-card,
  .plugin-card,
  .update-card-large,
  .privacy-card { grid-column: span 3; }
  .experience-panel { gap: 35px; padding: 52px; }
}

@media (max-width: 820px) {
  :root { --content: min(100% - 24px, 680px); }
  .site-header { top: 10px; min-height: 58px; margin-top: 10px; grid-template-columns: 1fr auto; }
  .header-download { display: none; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: none; align-items: stretch; padding: 9px; border: 1px solid var(--border); border-radius: 17px; background: rgba(10, 10, 15, 0.96); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); backdrop-filter: blur(22px); flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 13px; }
  .site-header.nav-open .nav-toggle span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
  .hero { min-height: auto; margin-top: 0; padding: 115px 0 65px; }
  .hero h1 { font-size: clamp(3.5rem, 15vw, 6rem); }
  .trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-strip > i { display: none; }
  .trust-strip > div { justify-content: center; }
  .section { padding-top: 100px; }
  .bento-grid { grid-template-columns: 1fr; }
  .card-wide,
  .voice-card,
  .plugin-card,
  .update-card-large,
  .privacy-card { grid-column: auto; }
  .card-wide { grid-template-columns: 1fr; }
  .privacy-card { min-height: 320px; }
  .integration-visual { border-top: 1px solid var(--border); border-left: 0; }
  .experience-panel { grid-template-columns: 1fr; padding: 45px 28px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 300px; }
  .faq-section { grid-template-columns: 1fr; gap: 42px; }
  .faq-heading { position: static; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand span { font-size: 0.93rem; }
  .hero { padding-top: 90px; }
  .release-pill { margin-bottom: 22px; font-size: 0.67rem; }
  .hero h1 { letter-spacing: -0.065em; }
  .hero-lead { font-size: 0.95rem; }
  .hero-actions .button { width: 100%; }
  .platform-line span { flex-basis: 100%; }
  .trust-strip { margin-top: 35px; padding: 20px 14px; }
  .trust-strip > div { align-items: center; flex-direction: column; gap: 3px; text-align: center; }
  .performance-note { padding-right: 0; text-align: center; }
  .section-heading h2,
  .experience-copy h2,
  .faq-heading h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .bento-card .card-body { padding: 24px; }
  .plugin-list .list-group-item { padding-right: 24px; padding-left: 24px; }
  .experience-panel { padding: 38px 20px; }
  .faq-list details p { padding-right: 10px; }
  .closing-cta { padding: 68px 17px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; gap: 8px; flex-direction: column; }
  .dialog-shell { padding: 24px 18px; }
  .dialog-heading { grid-template-columns: 38px 1fr; }
  .dialog-heading img { width: 38px; height: 38px; }
  .download-option { grid-template-columns: 35px 1fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .stars { display: none; }
}

@media (prefers-contrast: more) {
  :root { --border: rgba(255, 255, 255, 0.28); --muted: #b9b4c3; }
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-donate {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.header-donate:hover { border-color: var(--border-bright); background: rgba(255, 255, 255, 0.075); color: #fff; transform: translateY(-1px); }
.mobile-donation-link { display: none; }
.kofi-logo { display: inline-block; width: 23px; height: 19px; flex: 0 0 auto; object-fit: contain; }
.header-donate .kofi-logo { width: 22px; height: 18px; }
.donation-button {
  border-color: rgba(161, 137, 255, 0.38);
  background: linear-gradient(125deg, #7156e9, #963fd3 58%, #2989db);
  box-shadow: 0 14px 38px rgba(92, 65, 196, 0.28), inset 0 1px rgba(255, 255, 255, 0.2);
  color: #fff;
}
.donation-button:hover { box-shadow: 0 18px 48px rgba(92, 65, 196, 0.42), inset 0 1px rgba(255, 255, 255, 0.24); color: #fff; }

.badge-promo {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: var(--content);
  margin: 70px auto 0;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(17, 17, 26, 0.98), rgba(8, 8, 13, 0.98) 55%, rgba(12, 19, 34, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.badge-promo-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(139, 108, 255, 0.25);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(139, 108, 255, 0.15), rgba(64, 166, 255, 0.1));
}
.badge-promo-icon .cdn-icon { width: 31px; height: 31px; filter: invert(70%) sepia(74%) saturate(1041%) hue-rotate(292deg) brightness(108%); }
.badge-promo .eyebrow { margin-bottom: 8px; }
.badge-promo h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.7rem); letter-spacing: -0.055em; line-height: 1.05; }
.badge-promo h2 span { color: #c9b5ff; }
.badge-promo p:last-child { max-width: 650px; margin: 12px 0 0; color: var(--muted); font-size: 0.86rem; line-height: 1.65; }
.badge-promo-actions { display: flex; min-width: 210px; gap: 9px; flex-direction: column; }
.badge-promo-actions .button { width: 100%; }

.badge-main { padding-bottom: 35px; }
.badge-hero {
  display: grid;
  grid-template-columns: minmax(470px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 6vw, 100px);
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 106px);
  margin: 0 auto;
  padding: 125px 0 100px;
}
.badge-kofi-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(139, 108, 255, 0.28);
  border-radius: 999px;
  background: rgba(139, 108, 255, 0.08);
  color: #cbbfff;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}
.badge-kofi-pill:hover { border-color: rgba(139, 108, 255, 0.5); color: #fff; }
.badge-hero h1 { max-width: 680px; margin: 0; font-size: clamp(3.55rem, 4vw, 4rem); font-weight: 820; letter-spacing: -0.078em; line-height: 0.91; white-space: nowrap; }
.badge-hero h1 span {
  background: linear-gradient(105deg, #fff 4%, #aa93ff 56%, #4db1ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.badge-lead { max-width: 620px; margin: 28px 0 0; color: var(--text-soft); font-size: clamp(1rem, 1.4vw, 1.13rem); line-height: 1.72; }
.badge-actions, .badge-cta-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.badge-actions > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 650;
}
.badge-actions > span .cdn-icon { width: 16px; height: 16px; }
.badge-benefits { display: flex; flex-wrap: wrap; gap: 9px 17px; margin-top: 26px; }
.badge-benefits span { display: inline-flex; align-items: center; gap: 7px; color: #9d97aa; font-size: 0.72rem; font-weight: 650; }
.badge-benefits .cdn-icon { width: 14px; height: 14px; }

.badge-profile-demo {
  --bs-card-bg: rgba(11, 11, 17, 0.96);
  --bs-card-border-color: rgba(255, 255, 255, 0.13);
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(18, 16, 27, 0.98), rgba(7, 8, 13, 0.98));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45), 0 0 90px rgba(95, 55, 174, 0.13);
}
.badge-profile-demo::before { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(139, 108, 255, 0.08), transparent 36%, rgba(71, 161, 255, 0.06)); content: ""; pointer-events: none; }
.badge-profile-demo > * { position: relative; z-index: 1; }
.badge-demo-top, .badge-demo-status { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #6f697b; font-size: 0.62rem; font-weight: 750; letter-spacing: 0.1em; }
.badge-live-dot { display: inline-flex; align-items: center; gap: 7px; color: #7de3ae; letter-spacing: 0; }
.badge-live-dot::before { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(93, 228, 163, 0.7); content: ""; }
.badge-demo-profile { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 15px; margin-top: 25px; padding: 20px; border: 1px solid var(--border); border-radius: 19px; background: rgba(255, 255, 255, 0.032); }
.badge-demo-avatar { display: grid; width: 72px; height: 72px; overflow: hidden; place-items: center; border: 2px solid rgba(180, 141, 255, 0.35); border-radius: 50%; background: #07070b; }
.badge-demo-avatar img { width: 64px; height: 64px; object-fit: contain; }
.badge-demo-identity { display: flex; min-width: 0; flex-direction: column; }
.badge-demo-identity strong { font-size: 0.96rem; }
.badge-demo-identity small { margin-top: 4px; color: var(--muted); font-size: 0.7rem; }
.custom-profile-badge { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid rgba(139, 108, 255, 0.25); border-radius: 10px; background: linear-gradient(125deg, rgba(139, 108, 255, 0.16), rgba(64, 166, 255, 0.12)); color: #d9d0ff; font-size: 0.67rem; font-weight: 750; white-space: nowrap; }
.custom-profile-badge .cdn-icon { width: 13px; height: 13px; }
.badge-demo-description { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 14px; margin-top: 12px; padding: 17px 19px; border: 1px solid var(--border); border-radius: 17px; background: rgba(255, 255, 255, 0.02); }
.badge-demo-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px; background: rgba(139, 108, 255, 0.1); }
.badge-demo-description strong { font-size: 0.82rem; }
.badge-demo-description p { margin: 5px 0 0; color: var(--muted); font-size: 0.69rem; line-height: 1.55; }
.badge-demo-status { margin-top: 18px; padding: 0 3px; letter-spacing: 0; }
.badge-demo-status span { display: inline-flex; align-items: center; gap: 7px; }
.badge-demo-status strong { color: #73dfa8; font-size: 0.68rem; }

.badge-process { padding-top: 115px; }
.badge-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.badge-step { --bs-card-bg: rgba(12, 12, 19, 0.96); --bs-card-border-color: var(--border); position: relative; display: flex; min-height: 315px; padding: 28px; overflow: hidden; border-radius: 21px; background: linear-gradient(150deg, rgba(17, 17, 25, 0.96), rgba(8, 8, 13, 0.96)); flex-direction: column; }
.badge-step-number { position: absolute; top: 22px; right: 24px; color: rgba(255, 255, 255, 0.12); font-family: "Syne", sans-serif; font-size: 1.1rem; font-weight: 800; }
.badge-step-icon { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(177, 132, 255, 0.18); border-radius: 14px; background: rgba(139, 108, 255, 0.08); }
.badge-step-icon .cdn-icon { width: 22px; height: 22px; }
.badge-step-icon .kofi-logo { width: 28px; height: 23px; }
.badge-step h3 { margin: 28px 0 10px; font-size: 1.3rem; }
.badge-step p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.65; }
.badge-step > a { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 27px; color: #c3b2ff; font-size: 0.76rem; font-weight: 750; text-decoration: none; }
.badge-step > a:hover { color: #fff; }
.badge-step > a .cdn-icon { width: 13px; height: 13px; }

.badge-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; padding-top: 90px; }
.badge-detail-card { --bs-card-bg: rgba(12, 12, 19, 0.94); --bs-card-border-color: var(--border); min-height: 350px; padding: clamp(28px, 4vw, 46px); border-radius: 23px; background: linear-gradient(145deg, rgba(16, 15, 24, 0.97), rgba(8, 8, 13, 0.97)); }
.badge-api-card { background: linear-gradient(145deg, rgba(13, 18, 30, 0.97), rgba(8, 8, 13, 0.97)); }
.badge-detail-card h2 { margin: 22px 0 20px; font-size: clamp(2rem, 3.5vw, 3.3rem); letter-spacing: -0.055em; line-height: 1.05; }
.badge-detail-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.badge-detail-card ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.badge-detail-card li { position: relative; padding-left: 27px; color: var(--text-soft); font-size: 0.87rem; line-height: 1.55; }
.badge-detail-card li::before { position: absolute; top: 0.42em; left: 2px; width: 8px; height: 8px; border-radius: 3px; background: linear-gradient(135deg, #755cf0, #40a6ff); content: ""; }
.badge-cta { margin-top: 115px; }
.badge-cta-icon { display: grid; width: 68px; height: 68px; margin: 0 auto 24px; place-items: center; border: 1px solid rgba(139, 108, 255, 0.28); border-radius: 20px; background: linear-gradient(145deg, rgba(139, 108, 255, 0.16), rgba(64, 166, 255, 0.1)); }
.badge-cta-icon .cdn-icon { width: 28px; height: 28px; filter: invert(72%) sepia(72%) saturate(956%) hue-rotate(296deg) brightness(110%); }
.badge-cta-actions { justify-content: center; }

@media (max-width: 1080px) {
  .badge-promo { grid-template-columns: auto minmax(0, 1fr); }
  .badge-promo-actions { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .badge-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; text-align: center; }
  .badge-hero-copy { max-width: 780px; margin: 0 auto; }
  .badge-hero h1, .badge-lead { margin-right: auto; margin-left: auto; }
  .badge-actions, .badge-benefits { justify-content: center; }
  .badge-profile-demo { width: min(720px, 100%); margin: 0 auto; text-align: left; }
}
@media (max-width: 820px) {
  .header-actions { display: none; }
  .main-nav .mobile-donation-link { display: flex; color: #cbbfff; }
  .badge-promo { grid-template-columns: 1fr; text-align: center; }
  .badge-promo-icon { margin: 0 auto; }
  .badge-promo-actions { grid-column: auto; }
  .badge-step-grid, .badge-details { grid-template-columns: 1fr; }
  .badge-step { min-height: 285px; }
  .badge-detail-card { min-height: auto; }
}
@media (max-width: 560px) {
  .badge-promo { padding: 24px 18px; }
  .badge-promo-actions { grid-template-columns: 1fr; }
  .badge-hero { width: min(100% - 24px, 680px); padding-top: 90px; }
  .badge-hero h1 { font-size: clamp(2.45rem, 10vw, 3rem); }
  .badge-actions .button, .badge-actions > span, .badge-cta-actions .button { width: 100%; justify-content: center; }
  .badge-benefits { align-items: center; flex-direction: column; }
  .badge-profile-demo { padding: 17px; }
  .badge-demo-profile { grid-template-columns: auto 1fr; padding: 15px; }
  .custom-profile-badge { grid-column: 2; width: max-content; white-space: normal; }
  .badge-demo-avatar { width: 58px; height: 58px; grid-row: span 2; }
  .badge-demo-avatar img { width: 52px; height: 52px; }
  .badge-demo-status { align-items: flex-start; gap: 8px; flex-direction: column; }
}
.badge-hero-copy { min-width: 0; }
.badge-cta-icon .kofi-logo { width: 44px; height: 36px; }
