/* Capzo marketing — minimal, spacious */

.landing-body {
  --landing-max: 1080px;
  --section-space: clamp(4.5rem, 10vw, 7rem);
  background: #0a0c10;
}

.landing-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-shell > main { flex: 1; }

.landing-body .container {
  width: min(var(--landing-max), calc(100% - 3rem));
}

/* Brand logo */
.brand-logo { align-items: center; }
.brand-logo-img {
  display: block;
  flex-shrink: 0;
  border-radius: 12px;
}
.brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.brand-tag {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.landing-header .brand-copy h1 { display: none; }

/* ── Topbar ── */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.85rem 0 0;
  pointer-events: none;
}

.topbar-wrap {
  pointer-events: auto;
  width: min(var(--landing-max), calc(100% - 2rem));
  margin-inline: auto;
  padding: 0.45rem 0.55rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(12, 15, 20, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.28);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-topbar.is-scrolled .topbar-wrap {
  background: rgba(10, 12, 16, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 16px 48px rgba(0, 0, 0, 0.38);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  min-height: 44px;
}

.brand-logo--compact {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.55rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.brand-logo--compact .brand-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo--compact .brand-logo-img {
  border-radius: 10px;
  flex-shrink: 0;
}

.brand-logo--compact .brand-name {
  display: inline;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.topbar-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  min-width: 0;
  pointer-events: auto;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-link {
  position: relative;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.topbar-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.topbar-link.is-active {
  color: var(--text);
  background: rgba(20, 184, 166, 0.12);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.18);
}

.topbar-link--studio.is-active {
  color: #5eead4;
  background: rgba(20, 184, 166, 0.18);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-inline-start: auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.topbar-link-ghost {
  padding: 0.42rem 0.65rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

.topbar-link-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.topbar-link-ghost--studio {
  color: #5eead4;
}

.topbar-link-ghost--studio:hover {
  color: #99f6e4;
}

.topbar-account {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  box-shadow: 0 8px 22px rgba(20, 184, 166, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.topbar-account:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.topbar-account--panel {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.topbar-account--panel:hover {
  background: rgba(255, 255, 255, 0.1);
  filter: none;
}

.topbar-account--studio {
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  border: none;
  box-shadow: 0 8px 22px rgba(20, 184, 166, 0.28);
}

.topbar-account--studio:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.topbar-account--studio .topbar-account-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #042f2e;
}

.topbar-account-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(4, 47, 46, 0.12);
}

.topbar-account--panel .topbar-account-icon {
  background: rgba(20, 184, 166, 0.14);
  color: var(--primary);
}

.topbar-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-inline-start: auto;
  flex-shrink: 0;
}

.topbar-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.topbar-toggle.is-open .topbar-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar-toggle.is-open .topbar-toggle-bar:nth-child(2) {
  opacity: 0;
}

.topbar-toggle.is-open .topbar-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topbar-nav-backdrop,
.topbar-mobile-actions {
  display: none;
}

body.topbar-menu-open {
  overflow: hidden;
}

/* legacy aliases — app panel header */
.landing-header {
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(16px);
}

.landing-header .header-inner {
  min-height: 64px;
  padding: 0.75rem 0;
}

.nav-toggle { display: none; }
.landing-nav { display: flex; align-items: center; gap: 1.25rem; }
.landing-nav-links { display: flex; align-items: center; gap: 0.15rem; }
.landing-nav-links .nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.landing-nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-ghost { background: transparent; border: none; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
}

/* Animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}

.hero-orb--1 {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.55), transparent 70%);
  animation: hero-orb-a 18s ease-in-out infinite;
}

.hero-orb--2 {
  width: min(420px, 45vw);
  height: min(420px, 45vw);
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
  animation: hero-orb-b 22s ease-in-out infinite;
}

.hero-orb--3 {
  width: min(280px, 30vw);
  height: min(280px, 30vw);
  top: 35%;
  left: 42%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.25), transparent 70%);
  animation: hero-orb-c 14s ease-in-out infinite;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  animation: hero-mesh-drift 40s linear infinite;
}

.hero-float-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-float-lines span {
  position: absolute;
  bottom: -2rem;
  left: var(--x);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(94, 234, 212, 0.12);
  white-space: nowrap;
  animation: hero-line-rise 16s linear infinite;
  animation-delay: calc(var(--d) * -2.5s);
}

@keyframes hero-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}

@keyframes hero-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, -25px) scale(1.06); }
}

@keyframes hero-orb-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(0.92); }
  66% { transform: translate(-15px, 20px) scale(1.05); }
}

@keyframes hero-mesh-drift {
  from { background-position: 0 0; }
  to { background-position: 64px 64px; }
}

@keyframes hero-line-rise {
  0% { transform: translateY(0); opacity: 0; }
  8% { opacity: 0.14; }
  85% { opacity: 0.06; }
  100% { transform: translateY(-110vh); opacity: 0; }
}

/* Hero layout */
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-content {
  text-align: right;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.65rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, 0.25);
  background: rgba(20, 184, 166, 0.06);
  font-size: 0.78rem;
  color: #5eead4;
  backdrop-filter: blur(8px);
}

.hero-badge img {
  border-radius: 6px;
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #5eead4 0%, #14b8a6 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 26rem;
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn-hero {
  padding: 0.75rem 1.35rem;
  font-size: 0.95rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pills span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-subtle);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

/* Hero visual card */
.hero-visual {
  perspective: 900px;
}

.hero-glass {
  position: relative;
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(23, 27, 35, 0.75), rgba(10, 12, 16, 0.85));
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(20, 184, 166, 0.08) inset;
  animation: hero-card-float 6s ease-in-out infinite;
  transform: rotateY(-6deg) rotateX(4deg);
}

@keyframes hero-card-float {
  0%, 100% { transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

.hero-glass-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  color: var(--text-subtle);
}

.hero-glass-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hero-glass-top small {
  margin-right: auto;
  font-size: 0.72rem;
}

.hero-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 72px;
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
}

.hero-wave-bar {
  flex: 1;
  max-width: 6px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #5eead4, #0d9488);
  opacity: 0.55;
  transform-origin: center bottom;
  animation: hero-wave-pulse 1.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.06s);
}

@keyframes hero-wave-pulse {
  0%, 100% { transform: scaleY(0.25); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 0.85; }
}

.hero-caption-preview {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
}

.hero-caption-line {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.4s ease;
}

.hero-caption-line--active {
  color: rgba(255, 255, 255, 0.88);
}

.hero-caption-line + .hero-caption-line {
  margin-top: 0.35rem;
}

.hero-glass-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #5eead4;
}

.hero-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5eead4;
  animation: hero-pulse-dot 1.4s ease-in-out infinite;
}

@keyframes hero-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-mesh,
  .hero-float-lines span,
  .hero-glass,
  .hero-wave-bar,
  .hero-status i {
    animation: none !important;
  }

  .hero-glass {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { text-align: center; }

  .hero-lead { margin-inline: auto; }

  .hero-actions,
  .hero-pills { justify-content: center; }

  .hero-visual {
    order: -1;
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero-glass {
    transform: none;
    animation: hero-card-float-mobile 5s ease-in-out infinite;
  }

  @keyframes hero-card-float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
}

/* Sections */
.section {
  padding: var(--section-space) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.015);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.section-intro {
  text-align: center;
  max-width: 26rem;
  margin: 0 auto 3rem;
}

.section-intro h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-intro p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.98rem;
}

.section-foot {
  text-align: center;
  margin: 2.5rem 0 0;
}

.text-link {
  color: var(--primary);
  font-size: 0.92rem;
  transition: opacity var(--transition);
}

.text-link:hover { opacity: 0.85; }

/* Path cards */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.path-card--studio {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(165deg, rgba(56, 189, 248, 0.07), transparent 55%);
}

.path-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.path-card--accent {
  border-color: rgba(20, 184, 166, 0.22);
  background: linear-gradient(165deg, rgba(20, 184, 166, 0.07), transparent 55%);
}

.path-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.path-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.path-card > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.path-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.path-card li {
  position: relative;
  padding: 0.35rem 0;
  padding-right: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.path-card li::before {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--primary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 0.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #5eead4;
  background: rgba(20, 184, 166, 0.1);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 42rem;
  margin-inline: auto;
}

.pricing-grid--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.pricing-grid--page .price-card {
  padding: 2rem 1.65rem 1.75rem;
  min-height: 100%;
}

.pricing-grid--page .price-card.is-featured {
  transform: translateY(-2px);
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 1.75rem;
  margin-bottom: 1rem;
}

.price-badges .price-badge {
  margin: 0;
}

.price-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price-card.is-featured {
  border-color: rgba(20, 184, 166, 0.35);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.08), rgba(255, 255, 255, 0.01));
  box-shadow:
    0 0 0 1px rgba(20, 184, 166, 0.2),
    0 24px 48px -24px rgba(20, 184, 166, 0.2);
}

.price-badge {
  display: inline-block;
  width: fit-content;
  margin: 0 0 0.85rem;
  padding: 0.22rem 0.7rem;
  font-size: 0.72rem;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.22);
}

.price-card-top {
  margin-bottom: 1.25rem;
}

.price-value-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-value-unit {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.price-reels {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.price-reels svg {
  flex-shrink: 0;
}

.price-hint {
  margin: 0 0 1.15rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-period-note {
  margin: -0.55rem 0 1.1rem;
  font-size: 0.76rem;
  color: var(--text-subtle);
}

.price-desc {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  margin-bottom: 0.5rem;
}

.price-amount strong {
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.price-amount span {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.price-rate-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin-bottom: 1.5rem;
  min-height: 1.4rem;
}

.price-rate {
  font-size: 0.85rem;
  color: var(--primary);
}

.price-rate small {
  font-size: 0.78rem;
  opacity: 0.85;
}

.price-rate-base {
  font-size: 0.76rem;
  color: var(--text-subtle);
  opacity: 0.65;
}

.price-discount {
  font-size: 0.7rem;
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.12);
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
}

.price-card .btn-block {
  width: 100%;
  margin-top: auto;
}

/* Pricing page */
.pricing-page {
  padding-top: clamp(3rem, 6vw, 4.25rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.pricing-header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.pricing-header h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.pricing-header-lead {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.pricing-base-rate {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
}

.pricing-base-rate-label,
.pricing-base-rate-unit {
  color: var(--text-subtle);
}

.pricing-base-rate strong {
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.pricing-period-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 2.5rem;
  max-width: 26rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.pricing-period-tab {
  flex: 1 1 0;
  min-width: 5.75rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-period-tab:hover {
  color: var(--text);
  border-color: rgba(20, 184, 166, 0.25);
}

.pricing-period-tab.is-active {
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  border-color: transparent;
}

.pricing-period-tab-badge {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  font-size: 0.68rem;
  background: rgba(245, 158, 11, 0.18);
  color: #fcd34d;
}

.pricing-period-tab.is-active .pricing-period-tab-badge {
  background: rgba(4, 47, 46, 0.15);
  color: #042f2e;
}

.pricing-period-panel.hidden {
  display: none;
}

.price-badge--period {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.22);
}

.price-effective-monthly {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.pricing-includes {
  max-width: 32rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing-includes--page {
  max-width: 48rem;
  margin: 3.75rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-includes h2 {
  margin: 0 0 1.35rem;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 500;
}

.includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.includes-list--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  text-align: right;
}

.includes-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.includes-list li::before {
  content: "✓ ";
  color: var(--primary);
}

.pricing-formula {
  margin: 2.75rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.85;
}

.price-features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  flex: 1;
}

.price-features li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-features li:last-child { border-bottom: none; }

/* FAQ */
.faq-block { max-width: 36rem; margin-inline: auto; }

.faq-list { display: grid; gap: 0.65rem; }

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* CTA */
.cta-minimal {
  text-align: center;
  max-width: 28rem;
  margin-inline: auto;
}

.cta-minimal h2 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
}

.cta-minimal p {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Inner pages */
.page-hero {
  padding: calc(var(--section-space) * 0.85) 0 calc(var(--section-space) * 0.45);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.page-hero h1 {
  margin: 0.5rem auto 1rem;
  max-width: 22rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.page-hero p,
.page-hero .hero-lead {
  margin: 0 auto;
  max-width: 26rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.98rem;
}

.page-hero .hero-actions {
  margin-top: 1.75rem;
}

.page-body {
  padding: var(--section-space) 0;
}

.page-body--narrow {
  max-width: 36rem;
  margin-inline: auto;
}

.prose {
  color: var(--text-muted);
  line-height: 1.95;
  font-size: 0.98rem;
}

.prose h2 {
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
  font-size: 1.15rem;
}

.prose h2:first-child { margin-top: 0; }

.prose p { margin: 0 0 1rem; }

.prose ul {
  margin: 0 0 1.25rem;
  padding-right: 1.1rem;
}

.prose li { margin-bottom: 0.35rem; }

/* Market table — lighter */
.market-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.market-table th,
.market-table td {
  padding: 1rem 1.1rem;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.market-table th {
  color: var(--text-subtle);
  font-weight: 500;
  font-size: 0.78rem;
}

.market-table tr:last-child td { border-bottom: none; }

.market-table tr.is-highlight {
  background: rgba(20, 184, 166, 0.07);
}

.market-table tr.is-highlight td { color: var(--text); }

.market-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* Guide */
.guide-page {
  padding-top: clamp(3rem, 6vw, 4.25rem);
}

.guide-header {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 2.25rem;
}

.guide-header h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.guide-header-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.guide-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 3rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  position: sticky;
  top: 72px;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.guide-tab {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.guide-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.guide-content {
  max-width: 40rem;
  margin-inline: auto;
}

.guide-section {
  margin-bottom: 3.75rem;
  scroll-margin-top: 120px;
}

.guide-section--faq {
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.guide-section-head {
  text-align: center;
  max-width: 24rem;
  margin: 0 auto 1.75rem;
}

.guide-section-head h2 {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.guide-section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.guide-path-badge {
  display: inline-block;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.guide-path-badge--plugin {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.2);
}

.guide-reqs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.guide-steps {
  display: grid;
  gap: 1rem;
}

.guide-step-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.guide-step-visual {
  position: relative;
}

.guide-step-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 160px;
  background: #12151c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-step-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

/* Inline guide mockups */
.guide-mock {
  aspect-ratio: 16 / 10;
  min-height: 160px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(20, 184, 166, 0.1), transparent 55%),
    linear-gradient(180deg, #141820, #0f1218);
}

.guide-mock-window {
  width: min(100%, 340px);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 27, 36, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.guide-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.guide-mock-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.guide-mock-bar span:nth-child(1) { background: #ef4444; opacity: 0.75; }
.guide-mock-bar span:nth-child(2) { background: #eab308; opacity: 0.75; }
.guide-mock-bar span:nth-child(3) { background: #22c55e; opacity: 0.75; }

.guide-mock-bar em {
  margin-right: auto;
  font-style: normal;
  font-size: 0.68rem;
  color: var(--text-subtle);
}

.guide-mock-card {
  display: grid;
  gap: 0.45rem;
  text-align: center;
}

.guide-mock-card--center { margin: 0 auto; max-width: 220px; }

.guide-mock-card strong,
.guide-mock-window > strong {
  font-size: 0.92rem;
  color: var(--text);
}

.guide-mock-card small,
.guide-mock-window > small {
  font-size: 0.68rem;
  color: var(--text-subtle);
}

.guide-mock-logo {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.15rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
}

.guide-mock-field {
  height: 28px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0c10;
  display: flex;
  align-items: center;
  padding: 0 0.65rem;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: right;
}

.guide-mock-field--sm { flex: 1; }

.guide-mock-btn {
  height: 30px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
}

.guide-mock-btn--sm { width: 96px; flex-shrink: 0; }
.guide-mock-btn--wide { margin: 0.75rem 0; }
.guide-mock-btn--ghost {
  color: var(--text-muted);
  background: #0a0c10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-mock-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
}

.guide-mock-row--center { justify-content: center; }

.guide-mock-dropzone {
  padding: 1.25rem 0.75rem;
  border-radius: 10px;
  border: 2px dashed rgba(20, 184, 166, 0.35);
  background: rgba(20, 184, 166, 0.04);
  text-align: center;
}

.guide-mock-dropzone-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #5eead4;
  background: rgba(20, 184, 166, 0.12);
}

.guide-mock-dropzone p {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.guide-mock-dropzone span {
  font-size: 0.62rem;
  color: var(--text-subtle);
}

.guide-mock-success {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.guide-mock-success--sm {
  width: 28px;
  height: 28px;
  margin: 0.75rem auto 0;
  font-size: 0.75rem;
}

.guide-mock-caption {
  margin-top: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--text-muted);
  background: #1e293b;
  text-align: right;
}

.guide-mock-caption.is-active {
  color: #5eead4;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.guide-mock-file {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.guide-mock-file-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #eab308;
  background: rgba(234, 179, 8, 0.12);
}

.guide-mock-file strong {
  display: block;
  font-size: 0.75rem;
}

.guide-mock-file small {
  font-size: 0.62rem;
  color: var(--text-subtle);
}

.guide-mock-folder {
  margin-top: 0.75rem;
  padding: 0.65rem;
  border-radius: 8px;
  background: #0a0c10;
}

.guide-mock-folder small {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.62rem;
  color: var(--text-subtle);
}

.guide-mock-tag {
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  font-size: 0.6rem;
  color: var(--text-muted);
  background: #1e293b;
}

.guide-mock-terminal {
  display: grid;
  gap: 0.35rem;
  font-family: Consolas, monospace;
}

.guide-mock-terminal code {
  font-size: 0.62rem;
  color: #94a3b8;
}

.guide-mock-terminal code.is-ok { color: #22c55e; }

.guide-mock-progress {
  height: 5px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: #1e293b;
  overflow: hidden;
}

.guide-mock-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5eead4, #14b8a6);
}

.guide-mock-credit {
  height: 5px;
  margin: 0.35rem 0;
  border-radius: 999px;
  background: #1e293b;
  overflow: hidden;
}

.guide-mock-credit span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #14b8a6;
}

.guide-mock-menu {
  margin-bottom: 0.65rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.guide-mock-menu em {
  font-style: normal;
  color: #5eead4;
}

.guide-mock-split {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 0.5rem;
}

.guide-mock-timeline {
  display: grid;
  gap: 0.35rem;
  padding: 0.5rem;
  border-radius: 8px;
  background: #0a0c10;
}

.guide-mock-timeline--large {
  position: relative;
  min-height: 72px;
  margin-bottom: 0.65rem;
}

.guide-mock-track {
  height: 10px;
  border-radius: 3px;
  background: #334155;
}

.guide-mock-track.is-active {
  background: linear-gradient(90deg, #14b8a6, #5eead4);
}

.guide-mock-clip {
  position: absolute;
  top: 50%;
  left: 28%;
  width: 42%;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 4px;
  background: #475569;
  border: 2px solid #14b8a6;
}

.guide-mock-marker {
  position: absolute;
  top: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #ef4444;
}

.guide-mock-marker--in { left: 28%; }
.guide-mock-marker--out { left: 68%; }

.guide-mock-panel {
  padding: 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(20, 184, 166, 0.35);
  background: #161b24;
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.guide-mock-panel .guide-mock-logo {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

.guide-mock-panel strong { font-size: 0.62rem; }

.guide-mock-chips {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
}

.guide-mock-chip {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6rem;
  color: var(--text-muted);
  background: #1e293b;
}

.guide-mock-chip.is-active {
  color: #5eead4;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.35);
}

.guide-mock-window--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: min(100%, 360px);
}

.guide-mock-side {
  padding: 0.65rem;
  border-radius: 8px;
  background: #0a0c10;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.guide-mock-side strong { font-size: 0.68rem; }
.guide-mock-side small { font-size: 0.58rem; color: var(--text-subtle); }

.guide-step-body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.guide-step-num {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.6rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.12);
}

.guide-step-body h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.guide-step-body p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.guide-step-body p code {
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  color: #5eead4;
}

.guide-step-tip {
  margin-top: 0.75rem !important;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
  color: var(--text-subtle) !important;
  background: rgba(20, 184, 166, 0.05);
  border-right: 2px solid rgba(20, 184, 166, 0.35);
}

.guide-step-tip strong { color: #5eead4; font-weight: 600; }

.guide-footnote {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.75;
}

.guide-footnote a {
  color: var(--primary);
}

.faq-list--guide {
  max-width: none;
}

.step-list {
  display: grid;
  gap: 1rem;
}

.step-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  align-items: start;
}

.step-item-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
}

.step-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.step-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.req-pill {
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

/* Download */
.download-page {
  padding-top: clamp(3rem, 6vw, 4.25rem);
}

.download-header {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 2.75rem;
}

.download-header h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.download-header-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.download-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.download-specs span {
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.download-panel {
  max-width: none;
  margin-inline: 0;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

.download-os-badge {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.download-os-badge--mac {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.22);
}

.download-changelog--page {
  max-width: 52rem;
  margin: 1.25rem auto 0;
}

.download-panel-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.download-logo {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}

.download-panel-info h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.download-filename {
  margin: 0.2rem 0 0;
  font-size: 0.76rem;
  color: var(--text-subtle);
  line-height: 1.5;
  word-break: break-all;
}

.download-btn {
  width: 100%;
  max-width: 16rem;
}

.download-unavailable {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

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

.download-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
}

.step-num {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.12);
}

.download-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.download-changelog {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.download-changelog h3 {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.download-changelog ul {
  margin: 0;
  padding: 0 1.1rem 0 0;
  list-style: disc;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.download-changelog li + li {
  margin-top: 0.25rem;
}

.download-changelog-date {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-top: 2rem;
  font-size: 0.84rem;
}

.download-links a {
  color: var(--primary);
  transition: opacity var(--transition);
}

.download-links a:hover { opacity: 0.85; }

.download-links-sep {
  color: var(--text-subtle);
  opacity: 0.5;
}

.download-note {
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.download-alt {
  margin: 1.15rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.75;
}

.download-alt a {
  color: var(--primary);
}

.download-uninstall {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.06), transparent 55%), var(--bg-elevated);
}

.download-uninstall-head {
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.download-uninstall-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.download-uninstall-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.download-uninstall-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.download-uninstall-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.download-uninstall-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.download-steps--compact {
  margin: 0.85rem 0 1rem;
}

.download-uninstall-note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--text-subtle);
  line-height: 1.65;
}

@media (min-width: 640px) {
  .pricing-grid--page .price-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, calc((100% - 1.75rem) / 2));
    justify-self: center;
  }

  .download-panel-main {
    flex-direction: row;
    align-items: center;
    text-align: right;
    gap: 1.15rem;
  }

  .download-panel-info {
    flex: 1;
    min-width: 0;
  }

  .download-btn,
  .download-unavailable {
    width: auto;
    flex-shrink: 0;
    max-width: none;
  }
}

/* About */
.about-page {
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-hero-content {
  min-width: 0;
}

.about-hero-content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.about-hero-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.8vw, 0.98rem);
  line-height: 1.85;
  max-width: 30rem;
}

.about-hero-lead a {
  color: var(--primary);
  font-weight: 600;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-hero-pills span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-hero-visual {
  position: relative;
  min-width: 0;
}

.about-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.06), rgba(255, 255, 255, 0.01));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 56px rgba(0, 0, 0, 0.35);
}

.about-hero-frame::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.about-header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.about-header h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.about-header-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.about-header-lead a {
  color: var(--primary);
}

.about-brands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 44rem;
  margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
}

.about-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.1rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.about-brand-card:hover {
  border-color: rgba(20, 184, 166, 0.28);
  background: rgba(20, 184, 166, 0.05);
  transform: translateY(-2px);
}

.about-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.18);
}

.about-brand-icon img {
  display: block;
  border-radius: 8px;
}

.about-brand-name {
  font-size: 0.94rem;
  font-weight: 600;
}

.about-brand-role {
  font-size: 0.74rem;
  color: var(--text-subtle);
}

.about-story {
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.25rem);
}

.about-story-head {
  text-align: center;
  max-width: 26rem;
  margin: 0 auto 2rem;
}

.about-story-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-story-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-timeline {
  position: relative;
  padding-right: 1.65rem;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  right: 0.4rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(20, 184, 166, 0.45),
    rgba(255, 255, 255, 0.06)
  );
}

.about-milestone {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.15rem;
  padding-bottom: 1.35rem;
}

.about-milestone:last-child {
  padding-bottom: 0;
}

.about-milestone-marker {
  position: relative;
  z-index: 1;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: #0a0c10;
  border: 2px solid rgba(20, 184, 166, 0.5);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.08);
}

.about-milestone.is-featured .about-milestone-marker {
  border-color: var(--primary);
  background: rgba(20, 184, 166, 0.3);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.about-milestone-body {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.about-milestone:hover .about-milestone-body {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.about-milestone.is-featured .about-milestone-body {
  border-color: rgba(20, 184, 166, 0.25);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(255, 255, 255, 0.02));
}

.about-milestone-body h2,
.about-milestone-body h3 {
  margin: 0 0 0.4rem;
  font-size: 0.94rem;
  font-weight: 600;
}

.about-milestone-body p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-signature {
  position: relative;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  padding: 1.65rem 1.75rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(20, 184, 166, 0.04));
  text-align: center;
}

.about-signature-quote {
  display: block;
  margin: 0 auto 0.85rem;
  color: rgba(20, 184, 166, 0.35);
}

.about-signature-text {
  margin: 0 0 1.1rem;
  font-size: clamp(0.9rem, 1.8vw, 0.98rem);
  line-height: 1.9;
  color: var(--text-muted);
  font-style: normal;
}

.about-signature footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-style: normal;
}

.about-signature-sign {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.about-signature cite {
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.about-product {
  max-width: 38rem;
  margin: 0 auto 3.5rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--text-subtle);
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.about-contact {
  max-width: 44rem;
  margin-inline: auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-contact-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-contact-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-contact-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.about-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.about-link-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  background: rgba(20, 184, 166, 0.04);
}

.about-link-label {
  font-size: 0.76rem;
  color: var(--text-subtle);
}

.about-link-value {
  font-size: 0.88rem;
  color: var(--primary);
}

.about-cta {
  display: block;
  width: 100%;
  max-width: 16rem;
  margin-inline: auto;
  text-align: center;
}

/* Footer */
.landing-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.landing-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.landing-footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.landing-footer-links a:hover { color: var(--primary); }

.landing-footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid:not(.pricing-grid--page):not(.pricing-grid--home) { grid-template-columns: repeat(2, 1fr); }
  .includes-list--page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-brands { grid-template-columns: 1fr; }
  .about-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero-content {
    text-align: center;
  }

  .about-hero-lead {
    margin-inline: auto;
  }

  .about-hero-pills {
    justify-content: center;
  }

  .about-hero-visual {
    order: -1;
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .site-topbar {
    padding-top: 0.65rem;
  }

  .topbar-wrap {
    width: min(var(--landing-max), calc(100% - 1.25rem));
    padding: 0.4rem 0.45rem;
  }

  .topbar-inner {
    gap: 0.65rem;
  }

  .topbar-nav {
    position: fixed;
    inset: 0;
    left: 0;
    transform: none;
    z-index: 60;
    display: block;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  .topbar-nav.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  .topbar-nav-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 12, 0.62);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.24s ease;
  }

  .topbar-nav.is-open .topbar-nav-backdrop {
    opacity: 1;
  }

  .topbar-nav-panel {
    position: absolute;
    top: 0.85rem;
    left: 0.65rem;
    right: 0.65rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 15, 20, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(-12px) scale(0.98);
    transition: transform 0.24s ease;
  }

  .topbar-nav.is-open .topbar-nav-panel {
    transform: translateY(0) scale(1);
  }

  .topbar-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.35rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
  }

  .topbar-link {
    padding: 0.75rem 0.9rem;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  .topbar-mobile-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .topbar-actions {
    display: none;
  }

  .topbar-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .landing-body .container { width: min(100% - 2rem, var(--landing-max)); }

  .nav-toggle { display: none; }

  .landing-nav {
    display: none;
  }

  .path-grid,
  .pricing-grid,
  .pricing-grid--home,
  .pricing-grid--page,
  .features-grid { grid-template-columns: 1fr; }

  .pricing-grid--page {
    max-width: 22rem;
  }

  .includes-list--page {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .about-timeline {
    padding-right: 1.15rem;
  }

  .about-hero-visual {
    max-width: none;
  }

  .about-brand-card {
    flex-direction: row;
    text-align: right;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
  }

  .about-brand-icon {
    flex-shrink: 0;
  }

  .about-brand-name,
  .about-brand-role {
    text-align: right;
  }

  .guide-tabs {
    top: 64px;
    border-radius: 14px;
    width: 100%;
    justify-content: stretch;
  }

  .guide-tab {
    flex: 1 1 auto;
    text-align: center;
    padding-inline: 0.65rem;
  }
}
