:root {
  color-scheme: light;
  --ink: #161727;
  --ink-soft: #55576d;
  --muted: #77798c;
  --line: rgba(42, 45, 66, 0.11);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --mint: #1bc869;
  --mint-dark: #08763c;
  --violet: #7454e9;
  --violet-dark: #5336c0;
  --coral: #f05f62;
  --sky: #56a8f5;
  --shadow: 0 24px 70px rgba(37, 40, 67, 0.10);
  --shadow-soft: 0 12px 36px rgba(37, 40, 67, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --page: min(1160px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 6%, rgba(116, 84, 233, 0.15), transparent 28rem),
    radial-gradient(circle at 94% 16%, rgba(27, 200, 105, 0.13), transparent 25rem),
    radial-gradient(circle at 55% 85%, rgba(86, 168, 245, 0.10), transparent 32rem),
    linear-gradient(145deg, #f0f1f7 0%, #fff 43%, #f5f5fa 100%);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.27;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

a {
  color: var(--violet-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--violet);
}

img,
svg {
  max-width: 100%;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(244, 245, 250, 0.74);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.nav-shell {
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 860;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(25, 145, 79, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 11px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 690;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.site-nav .nav-download {
  margin-left: 7px;
  padding-inline: 15px;
  color: #fff;
  background: var(--ink);
}

.site-nav .nav-download:hover,
.site-nav .nav-download[aria-current="page"] {
  color: #fff;
  background: #2b2d42;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.page-main {
  overflow: clip;
}

.shell {
  width: var(--page);
  margin: 0 auto;
}

.hero {
  min-height: 690px;
  padding: clamp(70px, 9vw, 126px) 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: clamp(44px, 7vw, 98px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet-dark);
  font-size: 0.74rem;
  font-weight: 810;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  max-width: 750px;
  margin-bottom: 22px;
  font-size: clamp(3.45rem, 6.7vw, 6.6rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  font-weight: 825;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.23rem;
  font-weight: 790;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--violet-dark), #8871ef 42%, var(--mint-dark));
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 25px rgba(22, 23, 39, 0.15);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  color: #fff;
  background: #2c2e45;
  box-shadow: 0 16px 35px rgba(22, 23, 39, 0.21);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(42, 45, 66, 0.09);
  background: rgba(255, 255, 255, 0.73);
  box-shadow: var(--shadow-soft);
}

.button.secondary:hover {
  color: var(--ink);
  background: #fff;
}

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

.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.release-status {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.86rem;
}

.release-status::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f0aa3d;
  box-shadow: 0 0 0 5px rgba(240, 170, 61, 0.13);
}

html[data-ios-mode="appstore"] .release-status::before {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(27, 200, 105, 0.13);
}

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 5px 18px rgba(37, 40, 67, 0.05);
  font-size: 0.78rem;
  font-weight: 720;
}

.product-scene {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.product-scene::before,
.product-scene::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(8px);
}

.product-scene::before {
  width: 330px;
  height: 330px;
  top: 20px;
  right: 22px;
  background: radial-gradient(circle, rgba(27, 200, 105, 0.20), rgba(27, 200, 105, 0));
}

.product-scene::after {
  width: 340px;
  height: 340px;
  bottom: 2px;
  left: 5px;
  background: radial-gradient(circle, rgba(116, 84, 233, 0.22), rgba(116, 84, 233, 0));
}

.plugin-window {
  position: absolute;
  top: 40px;
  left: 0;
  width: min(430px, 88%);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  background: rgba(245, 246, 250, 0.80);
  box-shadow: 0 36px 70px rgba(35, 38, 67, 0.18);
  backdrop-filter: blur(24px);
  transform: rotate(-2.5deg);
}

.window-bar {
  height: 47px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(42, 45, 66, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6d7df;
}

.window-dots span:first-child { background: #f07775; }
.window-dots span:nth-child(2) { background: #efbe50; }
.window-dots span:nth-child(3) { background: #48c979; }

.window-title {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plugin-body {
  padding: 27px;
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 24px;
  align-items: center;
}

.plugin-logo {
  margin-bottom: 21px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.meter-label {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 680;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e3e9;
}

.meter span {
  width: 72%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), #d7cd41, var(--coral));
}

.connected-pill {
  margin-top: 30px;
  padding: 8px 11px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-dark);
  background: rgba(27, 200, 105, 0.10);
  font-size: 0.72rem;
  font-weight: 750;
}

.connected-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(27, 200, 105, 0.13);
}

.qr {
  aspect-ratio: 1;
  padding: 9px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, var(--ink) 18%, transparent 18% 32%, var(--ink) 32% 42%, transparent 42% 61%, var(--ink) 61% 72%, transparent 72%),
    linear-gradient(var(--ink) 15%, transparent 15% 29%, var(--ink) 29% 40%, transparent 40% 57%, var(--ink) 57% 69%, transparent 69% 82%, var(--ink) 82%);
  background-color: #fff;
  background-size: 31px 29px;
  box-shadow: inset 0 0 0 9px #fff, 0 10px 25px rgba(22, 23, 39, 0.11);
}

.phone {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 215px;
  height: 438px;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 47px;
  background: #202131;
  box-shadow: 0 38px 75px rgba(28, 30, 56, 0.28);
  transform: rotate(5deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 37px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 12%, rgba(116, 84, 233, 0.24), transparent 45%),
    radial-gradient(circle at 90% 75%, rgba(27, 200, 105, 0.22), transparent 40%),
    #f7f8fb;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 9px;
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #202131;
}

.phone-brand {
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.24em;
}

.power-orb {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.70);
  box-shadow:
    0 16px 32px rgba(38, 41, 65, 0.10),
    0 0 0 12px rgba(27, 200, 105, 0.06),
    0 0 45px rgba(27, 200, 105, 0.20);
}

.power-orb svg {
  width: 38px;
  height: 38px;
}

.phone-status {
  margin: 30px 0 0;
  color: var(--mint-dark);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 10vw, 128px) 0;
}

.section.compact {
  padding-block: 64px;
}

.section-tint {
  border-block: 1px solid rgba(255, 255, 255, 0.83);
  background: rgba(255, 255, 255, 0.32);
}

.section-head {
  max-width: 750px;
  margin-bottom: 46px;
}

.section-head p:last-child,
.body-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.steps-grid,
.feature-grid,
.facts-grid,
.link-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.glass-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: var(--radius-md);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.glass-card > :last-child {
  margin-bottom: 0;
}

.glass-card p,
.glass-card li {
  color: var(--ink-soft);
}

.glass-card ul,
.glass-card ol {
  margin: 13px 0 0;
  padding-left: 1.25rem;
}

.glass-card li + li {
  margin-top: 7px;
}

.step-number,
.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--violet-dark);
  background: rgba(116, 84, 233, 0.10);
  font-size: 0.85rem;
  font-weight: 830;
}

.feature-icon.mint {
  color: var(--mint-dark);
  background: rgba(27, 200, 105, 0.11);
}

.feature-icon.coral {
  color: #a8272c;
  background: rgba(240, 95, 98, 0.11);
}

.feature-icon.sky {
  color: #2369a7;
  background: rgba(86, 168, 245, 0.12);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.fact {
  min-height: 138px;
  padding: 22px;
}

.fact strong {
  display: block;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.35;
}

.fact span {
  margin-top: 7px;
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
}

.signal-card {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.signal-lines {
  width: min(100%, 490px);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.signal-lines i {
  width: 5px;
  min-height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--violet), var(--mint));
  animation: signal 1.9s ease-in-out infinite alternate;
}

.signal-lines i:nth-child(3n) { animation-delay: -0.6s; }
.signal-lines i:nth-child(4n) { animation-delay: -1.1s; }
.signal-lines i:nth-child(5n) { animation-delay: -1.5s; }

@keyframes signal {
  from { height: 18%; opacity: 0.54; }
  to { height: 88%; opacity: 1; }
}

.compat-list {
  margin: 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.compat-list li {
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 690;
}

.compat-list li::before {
  content: "✓";
  color: var(--mint-dark);
  font-weight: 900;
}

.note {
  padding: 16px 18px;
  border: 1px solid rgba(240, 170, 61, 0.20);
  border-radius: 14px;
  color: #684b17;
  background: rgba(255, 238, 198, 0.48);
  font-size: 0.9rem;
}

.note strong {
  color: #4c350e;
}

.note.info {
  border-color: rgba(86, 168, 245, 0.22);
  color: #265776;
  background: rgba(214, 237, 255, 0.46);
}

.note.success {
  border-color: rgba(27, 200, 105, 0.20);
  color: #15623a;
  background: rgba(210, 248, 225, 0.50);
}

.cta-panel {
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  background:
    radial-gradient(circle at 8% 10%, rgba(116, 84, 233, 0.17), transparent 44%),
    radial-gradient(circle at 95% 100%, rgba(27, 200, 105, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.cta-panel p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
}

.subpage-hero {
  padding: clamp(72px, 9vw, 116px) 0 56px;
}

.subpage-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
}

.subpage-hero .lead {
  max-width: 760px;
}

.content-layout {
  padding-bottom: clamp(80px, 11vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 54px;
}

.article-flow {
  min-width: 0;
}

.article-flow > * + * {
  margin-top: 20px;
}

.article-card {
  padding: clamp(24px, 4vw, 38px);
}

.article-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.article-card h3 {
  margin-top: 30px;
}

.article-card p,
.article-card li {
  color: var(--ink-soft);
}

.article-card p {
  margin: 0 0 15px;
}

.article-card ol,
.article-card ul {
  padding-left: 1.35rem;
}

.article-card li + li {
  margin-top: 9px;
}

.page-aside {
  position: sticky;
  top: 100px;
}

.aside-card {
  padding: 20px;
}

.aside-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aside-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-links li + li {
  margin-top: 6px;
}

.aside-links a {
  padding: 7px 8px;
  border-radius: 9px;
  display: block;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 670;
  text-decoration: none;
}

.aside-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.70);
}

.download-panel {
  padding: clamp(30px, 5vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.download-icon {
  width: 76px;
  height: 76px;
  border-radius: 21px;
  object-fit: cover;
  box-shadow: 0 15px 34px rgba(24, 133, 73, 0.18);
}

.download-meta h2 {
  margin: 0 0 7px;
  font-size: 1.5rem;
}

.download-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.download-meta .platform-kicker {
  margin-bottom: 6px;
  color: var(--violet-dark);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-checksum,
.download-panel > .download-note {
  grid-column: 2 / -1;
}

.package-checksum {
  margin: 0;
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.package-checksum code {
  overflow-wrap: anywhere;
}

.article-card code {
  overflow-wrap: anywhere;
}

.download-panel > .download-note {
  margin: 0;
}

.requirements {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.requirements li {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.53);
  font-size: 0.92rem;
}

.requirements strong {
  margin-bottom: 3px;
  display: block;
  color: var(--ink);
}

.install-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: install;
}

.install-steps li {
  position: relative;
  min-height: 58px;
  padding-left: 64px;
  counter-increment: install;
}

.install-steps li + li {
  margin-top: 24px;
}

.install-steps li::before {
  content: counter(install);
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--violet-dark);
  background: rgba(116, 84, 233, 0.10);
  font-size: 0.82rem;
  font-weight: 850;
}

.install-steps strong {
  margin-bottom: 3px;
  display: block;
  color: var(--ink);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 38px 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--violet-dark);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 800px;
  margin: -4px 0 22px;
  color: var(--ink-soft);
}

.press-copy {
  position: relative;
}

.copy-button {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 720;
}

.copy-text {
  padding-right: 82px;
}

.asset-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.asset-preview {
  min-height: 100px;
  margin-bottom: 20px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(116, 84, 233, 0.16), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(27, 200, 105, 0.16), transparent 50%),
    rgba(246, 247, 251, 0.78);
}

.asset-preview img {
  max-width: 72%;
  max-height: 74px;
}

.asset-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.legal-warning {
  border-color: rgba(197, 51, 57, 0.30);
  background: rgba(255, 225, 226, 0.66);
}

.legal-warning strong,
.legal-warning p {
  color: #7b2024;
}

.legal-warning code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(123, 32, 36, 0.08);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(244, 245, 249, 0.66);
}

.footer-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 52px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.7fr);
  gap: 40px;
}

.footer-brand p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 830;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 7px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .product-scene {
    width: min(100%, 640px);
    margin: 0 auto;
  }

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

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

  .content-layout {
    grid-template-columns: 1fr;
  }

  .page-aside {
    position: static;
    order: -1;
  }

  .aside-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .aside-links li + li {
    margin-top: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --page: min(100% - 28px, 680px);
  }

  .nav-shell {
    position: relative;
    min-height: 64px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(250, 250, 253, 0.95);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 11px 12px;
  }

  .site-nav .nav-download {
    margin: 5px 0 0;
    text-align: center;
  }

  .hero {
    padding-top: 70px;
    gap: 36px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 5.2rem);
  }

  .steps-grid,
  .feature-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

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

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

  .download-panel .button {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .product-scene {
    min-height: 430px;
  }

  .plugin-window {
    top: 15px;
    width: 93%;
    min-height: 280px;
  }

  .plugin-body {
    padding: 22px;
    grid-template-columns: 1fr 92px;
    gap: 16px;
  }

  .phone {
    width: 174px;
    height: 355px;
    border-radius: 39px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .power-orb {
    width: 92px;
    height: 92px;
  }

  .facts-grid,
  .requirements,
  .compat-list {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 22px;
  }

  .fact {
    min-height: auto;
  }

  .download-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-icon {
    margin: 0 auto;
  }

  .download-panel .button {
    grid-column: auto;
  }

  .package-checksum,
  .download-panel > .download-note {
    grid-column: auto;
  }

  .copy-button {
    position: static;
    margin-bottom: 18px;
  }

  .copy-text {
    padding-right: 0;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --ink-soft: #303142;
    --muted: #4d4f60;
    --line: rgba(20, 21, 32, 0.30);
  }

  .glass-card,
  .site-nav,
  .chip {
    border-color: rgba(20, 21, 32, 0.24);
  }
}
