:root {
  --bg: #bdbdb9;
  --board-top: #85897f;
  --board-top-2: #a4a89f;
  --board-bottom: #0c0c0c;
  --panel: rgba(255, 255, 255, 0.14);
  --panel-strong: rgba(255, 255, 255, 0.2);
  --panel-dark: rgba(10, 10, 10, 0.86);
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f7f2;
  --text-soft: rgba(247, 247, 242, 0.7);
  --text-dim: rgba(247, 247, 242, 0.5);
  --neon: #c9ff27;
  --neon-soft: rgba(201, 255, 39, 0.18);
  --shadow: 0 26px 80px rgba(23, 23, 23, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.26), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(201, 255, 39, 0.12), transparent 18%),
    linear-gradient(180deg, #b8b8b7 0%, #c8c8c4 100%);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 80%);
}

#app {
  min-height: 100vh;
}

.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.board {
  display: grid;
  gap: 28px;
}

.hero-surface {
  background: var(--board-bottom);
  box-shadow: var(--shadow);
}

.hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(180deg, var(--board-top) 0%, var(--board-top-2) 100%);
}

.hero-backdrop {
  position: absolute;
  inset: -28px -5% 0 -5%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-backdrop-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: max(1540px, 100vw);
  max-width: none;
  height: auto;
  opacity: 1;
  filter:
    grayscale(1)
    contrast(1.18)
    brightness(0.78)
    drop-shadow(0 -2px 0 rgba(255, 255, 255, 0.809))
    drop-shadow(2px 0 0 rgba(255, 255, 255, 0.22))
    drop-shadow(-2px 0 0 rgba(255, 255, 255, 0.22))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.14));
}

.hero-follower-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-follower-markers-back {
  z-index: 1;
}

.hero-follower-markers-front {
  z-index: 3;
}

.follower-marker {
  position: absolute;
  appearance: none;
  width: clamp(88px, 7vw, 112px);
  height: 42px;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font: inherit;
  border-radius: 4px 6px 3px 5px;
  border: 1px solid rgba(38, 36, 30, 0.34);
  cursor: pointer;
  pointer-events: auto;
  background:
    linear-gradient(180deg, rgba(255, 251, 240, 0.96), rgba(221, 215, 198, 0.94)),
    repeating-linear-gradient(
      0deg,
      rgba(95, 88, 76, 0.06) 0,
      rgba(95, 88, 76, 0.06) 1px,
      transparent 1px,
      transparent 6px
    );
  box-shadow:
    0 12px 22px rgba(12, 12, 12, 0.18),
    0 2px 0 rgba(36, 34, 29, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  transform: translateX(-50%) rotate(var(--marker-rotation));
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.follower-marker::before {
  content: "";
  position: absolute;
  inset: 7px 6px auto;
  height: 1px;
  background: rgba(58, 53, 43, 0.18);
}

.follower-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 2px;
  height: 14px;
  background: rgba(76, 71, 60, 0.38);
  transform: translateX(-50%);
}

.follower-marker:hover,
.follower-marker:focus-visible,
.follower-marker[aria-expanded="true"] {
  border-color: rgba(24, 22, 18, 0.52);
  box-shadow:
    0 16px 28px rgba(12, 12, 12, 0.22),
    0 2px 0 rgba(36, 34, 29, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  transform: translateX(-50%) rotate(var(--marker-rotation)) translateY(-3px);
}

.follower-marker:focus-visible {
  outline: 2px solid rgba(246, 241, 224, 0.88);
  outline-offset: 2px;
}

.follower-marker strong {
  font-size: clamp(0.74rem, 0.95vw, 0.88rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: rgba(26, 24, 20, 0.92);
  text-shadow: none;
}

.follower-encouragement {
  position: absolute;
  width: min(300px, calc(100vw - 40px));
  padding: 16px 18px;
  border: 1px solid rgba(108, 96, 74, 0.24);
  background: #f1eadb;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
  color: rgba(29, 27, 22, 0.92);
  transform: rotate(-1.6deg);
  clip-path: polygon(
    1% 11%,
    7% 3%,
    18% 6%,
    31% 2%,
    47% 5%,
    62% 1%,
    78% 4%,
    94% 2%,
    99% 12%,
    97% 27%,
    100% 43%,
    96% 59%,
    98% 74%,
    94% 97%,
    79% 100%,
    63% 96%,
    45% 100%,
    29% 95%,
    12% 99%,
    3% 92%,
    0% 74%,
    2% 58%,
    0% 39%,
    3% 23%,
    0% 10%
  );
  pointer-events: none;
}

.follower-encouragement::before,
.follower-encouragement::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(16, 16, 16, 0.92);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.follower-encouragement::before {
  top: -7px;
  left: 12px;
  width: 58px;
  height: 16px;
  transform: rotate(-5deg);
}

.follower-encouragement::after {
  right: 14px;
  bottom: -8px;
  width: 70px;
  height: 18px;
  transform: rotate(4deg);
}

.follower-encouragement[hidden] {
  display: none;
}

.follower-encouragement p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
}

.site-header,
.hero-grid,
.bottom-tray {
  position: relative;
  z-index: 2;
}

.site-header {
  z-index: 4;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.brand-text small {
  color: var(--text-dim);
}

.top-search {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.search-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--text-soft);
  font-size: 0.85rem;
  white-space: nowrap;
  text-decoration: none;
  min-height: 36px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.search-chip:hover,
.search-chip:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: white;
  color: #111;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.language-picker-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--neon);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-picker select {
  max-width: 132px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.language-picker select option {
  background: #171717;
  color: #f5f5f5;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .hero-grid,
html[dir="rtl"] .showcase-card,
html[dir="rtl"] .detail-footer {
  direction: rtl;
}

.site-nav {
  display: flex;
  gap: 18px;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.ghost-button,
.primary-button,
.secondary-button,
.billing-option,
.auth-tab,
.search-button,
.auth-form button,
.auth-form input,
.auth-form select {
  font: inherit;
}

.ghost-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.ghost-button {
  padding: 11px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.login-entry {
  position: relative;
}

.login-trigger {
  min-height: 44px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.04);
}

.login-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.login-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(396px, calc(100vw - 32px));
  max-height: min(78vh, 640px);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(10, 10, 10, 1)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.38);
  z-index: 10;
  overflow: auto;
}

.login-popover[hidden] {
  display: none;
}

.login-popover-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.login-popover .showcase-brand {
  margin-bottom: 0;
}

.login-popover .showcase-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1.2rem;
}

.login-popover-close {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}

.login-popover-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.primary-button {
  padding: 14px 20px;
  background: var(--neon);
  color: #0e0e0a;
  border: 1px solid transparent;
  box-shadow: 0 0 0 1px rgba(201, 255, 39, 0.16), 0 14px 32px rgba(201, 255, 39, 0.16);
}

.secondary-button {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
}

.ghost-button:hover,
.primary-button:hover,
.secondary-button:hover,
.billing-option:hover,
.auth-tab:hover,
.search-button:hover {
  transform: translateY(-1px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: start;
  padding: 28px 30px 20px;
}

.hero-copy,
.hero-stats {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 470px;
  padding-top: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(247, 247, 242, 0.72);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.showcase-card h2,
.feature-card h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 7.2ch;
  font-size: clamp(3.2rem, 5.2vw, 5.3rem);
  line-height: 0.94;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text,
.panel-title,
.metric-block small,
.showcase-copy,
.plan-summary,
.form-hint,
.form-feedback,
.section-heading p,
.feature-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-text {
  max-width: 31ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.checkout-feedback {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  line-height: 1.7;
}

.checkout-feedback.is-success,
.payment-form-feedback.is-success {
  border-color: rgba(201, 255, 39, 0.28);
  background: rgba(201, 255, 39, 0.08);
  color: #eef9c0;
}

.checkout-feedback.is-error,
.payment-form-feedback.is-error {
  border-color: rgba(255, 119, 119, 0.26);
  background: rgba(255, 119, 119, 0.08);
  color: #ffd0d0;
}

.floating-chart,
.stat-panel,
.feature-card,
.pricing-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px);
}

.floating-chart {
  margin-top: 38px;
  padding: 22px;
  max-width: 380px;
}

.compare-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.compare-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.compare-copy strong {
  color: var(--text);
}

.panel-title {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--text);
}

.card-corner {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.compare-chart {
  position: relative;
  padding: 14px 14px 10px;
  border-radius: 22px;
  background: rgba(15, 16, 14, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-legend {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.compare-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.06);
}

.compare-legend span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.compare-legend .manual::before,
.compare-dot.manual,
.compare-line.manual {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  fill: rgba(255, 255, 255, 0.78);
  stroke: rgba(255, 255, 255, 0.72);
}

.compare-legend .auto::before,
.compare-dot.auto,
.compare-line.auto {
  color: var(--neon);
  background: var(--neon);
  fill: var(--neon);
  stroke: var(--neon);
}

.compare-chart-plot {
  display: block;
  width: 100%;
  height: auto;
}

.compare-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare-line.manual {
  opacity: 0.58;
}

.compare-line.auto {
  filter: drop-shadow(0 0 8px rgba(201, 255, 39, 0.2));
}

.compare-dot {
  stroke: rgba(12, 13, 12, 0.75);
  stroke-width: 5;
}

.compare-dot.manual {
  opacity: 0.8;
}

.compare-dot.auto {
  filter: drop-shadow(0 0 8px rgba(201, 255, 39, 0.32));
}

.chart-lines {
  position: relative;
  height: 86px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.chart-lines span {
  display: block;
  flex: 1;
  border-top: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transform: skewY(-18deg);
  opacity: 0.82;
}

.chart-lines span:nth-child(1) {
  margin-top: 48px;
}

.chart-lines span:nth-child(2) {
  margin-top: 40px;
}

.chart-lines span:nth-child(3) {
  margin-top: 28px;
}

.chart-lines span:nth-child(4) {
  margin-top: 18px;
}

.chart-lines .accent-dot {
  position: absolute;
  width: 26px;
  height: 26px;
  right: 78px;
  top: 34px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 0 8px rgba(201, 255, 39, 0.14);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 0.78rem;
  gap: 8px;
}

.chart-labels span {
  flex: 1;
  text-align: center;
}

.hero-stats {
  display: grid;
  gap: 16px;
  align-content: start;
  width: min(100%, 500px);
  justify-self: end;
  margin-right: 160px;
  padding-top: 8px;
}

.stat-panel {
  padding: 20px;
}

.stat-panel.large {
  padding: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.metric-block {
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.metric-block strong,
.mini-value {
  display: block;
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  font-weight: 600;
  line-height: 1.45;
}

.metric-block span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}

.metric-block small {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  line-height: 1.7;
}

.segment-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
  gap: 8px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.5);
}

.segment-tabs span {
  text-align: center;
  padding: 10px 8px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.segment-tabs .is-active {
  background: var(--neon);
  color: #12130d;
}

.mini-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mini-copy {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.panel-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 0.92rem;
}

.panel-list li + li {
  margin-top: 8px;
}

.bar-cluster {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 76px;
  margin-top: 18px;
}

.bar-cluster span {
  display: block;
  flex: 1;
  height: 36%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.bar-cluster span:nth-child(2) {
  height: 52%;
}

.bar-cluster span:nth-child(3) {
  height: 28%;
}

.bar-cluster span:nth-child(4) {
  height: 62%;
}

.bar-cluster .is-accent {
  height: 82%;
  background: var(--neon);
}

.bar-cluster span:nth-child(6) {
  height: 48%;
}

.bar-cluster span:nth-child(7) {
  height: 32%;
}

.bottom-tray {
  margin-top: 14px;
  padding: 18px 18px 20px;
  background: rgba(0, 0, 0, 0.92);
}

.tray-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 4px 18px;
}

.tray-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(13, 13, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: 100%;
}

.showcase-card.featured {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 1));
}

.showcase-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.showcase-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: white;
  color: #0f0f0f;
  font-size: 1.8rem;
  font-weight: 600;
}

.showcase-brand strong {
  display: block;
}

.showcase-brand small {
  color: var(--text-dim);
}

.showcase-card h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.15;
  max-width: 18ch;
}

#plugin > h2 {
  margin-bottom: 120px;
}

.pricing-intro {
  order: 5;
  width: min(100%, 520px);
  margin: 18px auto 0;
}

#pricing {
  display: grid;
  justify-items: stretch;
  align-content: start;
  padding-top: 24px;
}

#pricing > .showcase-brand {
  order: 1;
  display: inline-flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  text-align: left;
}

#pricing > h2 {
  order: 2;
  width: 100%;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 150px;
}

#pricing > .pricing-intro {
  text-align: left;
}

#pricing > .pricing-intro.pricing-rule-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#pricing > .pricing-intro ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.9rem;
}

#pricing > .billing-toggle {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
  margin-bottom: 18px;
  width: fit-content;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 14px;
}

.tag-row span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.84rem;
}

.plugin-action-cards {
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 18px;
}

.plugin-action-card {
  position: relative;
  min-height: 138px;
  padding: 18px 18px 20px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 39, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.plugin-action-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 255, 39, 0.36), transparent);
  opacity: 0.78;
}

.plugin-action-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(201, 255, 39, 0.12);
  color: #e7ff8d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.plugin-action-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.plugin-action-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.88rem;
}

.showcase-copy {
  max-width: 32ch;
  margin: 0;
}

.plugin-sections {
  display: grid;
  width: min(100%, 1280px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px auto 0;
}

.plugin-subsection {
  padding: 18px;
  min-height: 168px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.plugin-subsection h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.plugin-subsection p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.9rem;
}

.payment-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 14px;
}

.payment-method-view[hidden],
.crypto-checkout-sheet[hidden] {
  display: none;
}

.payment-method-card {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.payment-method-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.payment-method-card.is-active {
  border-color: rgba(201, 255, 39, 0.32);
  background:
    radial-gradient(circle at top right, rgba(201, 255, 39, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(201, 255, 39, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 40px rgba(201, 255, 39, 0.08);
}

.payment-method-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-method-card strong {
  display: block;
  font-size: 1.1rem;
}

.payment-method-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.payment-selection-note {
  margin: 0 0 2px;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
}

.payment-form-feedback {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1.65;
}

.crypto-checkout-sheet {
  margin-top: 18px;
}

.crypto-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.crypto-sheet-back {
  padding: 12px 16px;
  white-space: nowrap;
}

.crypto-sheet-copy {
  text-align: right;
}

.crypto-sheet-copy strong {
  display: block;
  font-size: 1.05rem;
}

.crypto-sheet-copy p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.crypto-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 16px;
}

.crypto-qr-card,
.crypto-chain-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.crypto-qr-card {
  padding: 20px;
}

.crypto-qr-shell {
  display: grid;
  grid-template-columns: repeat(var(--qr-size, 33), 1fr);
  gap: 3px;
  width: min(100%, 280px);
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 20px;
  background: #f6f8f1;
  margin: 0 auto;
}

.crypto-qr-cell {
  border-radius: 2px;
  background: rgba(8, 8, 8, 0.05);
}

.crypto-qr-cell.is-filled {
  background: #0d0d0d;
}

.crypto-qr-placeholder {
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  color: rgba(8, 8, 8, 0.58);
  font-size: 0.95rem;
  font-weight: 700;
}

.crypto-qr-meta {
  margin-top: 18px;
  text-align: center;
}

.crypto-token-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 255, 39, 0.1);
  color: var(--neon);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crypto-qr-meta strong {
  display: block;
  margin-top: 12px;
  font-size: 1.15rem;
}

.crypto-qr-meta p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.crypto-address-block {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.crypto-address-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.crypto-address-label span {
  font-size: 0.94rem;
  font-weight: 600;
}

.crypto-address-label small,
.crypto-chain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crypto-address-block code {
  display: block;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #eff2e2;
  font-size: 0.84rem;
  line-height: 1.7;
  word-break: break-all;
}

.crypto-address-block .secondary-button {
  width: 100%;
  margin-top: 12px;
}

.crypto-inline-feedback {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  line-height: 1.6;
}

.crypto-inline-feedback.is-success {
  border-color: rgba(201, 255, 39, 0.24);
  background: rgba(201, 255, 39, 0.08);
  color: #eef9c0;
}

.crypto-inline-feedback.is-error {
  border-color: rgba(255, 119, 119, 0.26);
  background: rgba(255, 119, 119, 0.08);
  color: #ffd0d0;
}

.crypto-chain-panel {
  padding: 18px;
}

.crypto-chain-panel-title {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crypto-chain-list {
  display: grid;
  gap: 10px;
}

.crypto-chain-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.crypto-chain-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.crypto-chain-option.is-active {
  border-color: rgba(201, 255, 39, 0.3);
  background:
    radial-gradient(circle at top right, rgba(201, 255, 39, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(201, 255, 39, 0.08);
}

.crypto-chain-name {
  font-size: 0.98rem;
  font-weight: 600;
}

.crypto-chain-option small {
  grid-column: 1 / -1;
  color: var(--text-dim);
}

.crypto-chain-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.crypto-chain-note strong,
.crypto-chain-note span {
  display: block;
}

.crypto-chain-note span {
  margin-top: 6px;
  color: var(--neon);
  font-size: 0.88rem;
}

.crypto-chain-note p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.payment-modal-root {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(4, 4, 4, 0.72);
  backdrop-filter: blur(10px);
}

.payment-modal {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 0%, rgba(201, 255, 39, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.payment-modal-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.payment-modal-kicker {
  margin: 0 0 8px;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-modal-head h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.payment-modal-close {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.payment-modal-plan {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.payment-modal-plan-label,
.payment-modal-plan-price {
  margin: 0;
}

.payment-modal-plan-label {
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-modal-plan strong {
  font-size: 1.26rem;
}

.payment-modal-plan span {
  color: var(--text-soft);
  line-height: 1.7;
}

.payment-modal-plan-price {
  color: var(--neon);
  font-size: 1.02rem;
  font-weight: 700;
}

.payment-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.payment-modal-actions .primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
  filter: saturate(0.88);
}

.billing-toggle {
  display: inline-flex;
  padding: 6px;
  gap: 8px;
  margin: 18px 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.billing-option {
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
}

.billing-option.is-active {
  background: white;
  color: #101010;
}

.pricing-stack {
  order: 3;
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 320px;
}

.pricing-card.featured {
  border-color: rgba(201, 255, 39, 0.28);
  background:
    linear-gradient(180deg, rgba(201, 255, 39, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.pricing-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.plan-name,
.plan-summary,
.plan-badge,
.feature-index {
  margin: 0;
}

.plan-name {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 700;
}

.plan-summary {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.plan-badge {
  align-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--neon);
  color: #0f1208;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 8px;
}

.plan-price strong {
  font-size: 2rem;
  line-height: 1;
}

.plan-price span {
  color: var(--text-dim);
  min-width: 2.8em;
}

.pricing-card .plan-details {
  flex: 0 0 auto;
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.plan-features {
  flex: 1 1 auto;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-features p {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.pricing-card .plan-features ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.75;
}

.pricing-rules-grid {
  order: 4;
  display: grid;
  width: min(100%, 1280px);
  margin: 18px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-rule-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-rule-title {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-rule-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.9rem;
}

.login-lead {
  margin: 12px 0 0;
  max-width: 34ch;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.google-login-shell {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.login-popover-shell {
  margin-top: 14px;
  gap: 10px;
}

.google-login-panel,
.google-profile-panel {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.google-login-labels {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.google-login-labels small {
  color: var(--text-dim);
}

.google-login-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.8rem;
}

.google-button-host {
  min-height: 48px;
}

.google-button-host > div {
  display: flex;
  justify-content: flex-start;
}

.google-profile-empty strong,
.google-user-meta strong,
.google-user-facts strong,
.google-setup-hint strong {
  display: block;
  color: var(--text);
}

.google-profile-empty p,
.google-setup-hint p,
.google-user-sub {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.google-profile-card {
  display: grid;
  gap: 16px;
}

.google-user-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.google-user-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.google-user-meta span,
.google-user-facts small {
  color: var(--text-soft);
}

.google-user-meta span {
  display: block;
  margin-top: 4px;
}

.google-user-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.google-user-facts div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.google-user-facts strong {
  margin-top: 4px;
}

.google-setup-hint {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.google-setup-hint code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.full-width {
  width: 100%;
}

.form-hint,
.form-feedback {
  margin: 0;
  font-size: 0.88rem;
}

.form-feedback {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.login-popover .google-login-panel,
.login-popover .google-profile-panel {
  padding: 14px;
  border-radius: 16px;
}

.login-popover .login-lead,
.login-popover .form-feedback {
  font-size: 0.88rem;
}

.login-popover .google-login-labels {
  margin-bottom: 12px;
}

.login-popover .google-profile-card {
  gap: 12px;
}

.login-popover .google-user-facts div {
  padding: 12px;
}

.detail-footer {
  padding: 0;
}

.detail-footer-shell {
  padding: 28px 30px 18px;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.94), rgba(12, 12, 12, 0.98)),
    rgba(255, 255, 255, 0.03);
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.detail-footer-brand {
  min-width: 0;
}

.detail-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) auto;
  gap: 28px;
  align-items: center;
}

.detail-footer-heading {
  min-width: 0;
}

.detail-footer-heading .brand-mark {
  flex: 0 0 auto;
}

.detail-footer-copy {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.75;
}

.detail-footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-footer-social a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.detail-footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-footer-links {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.detail-footer-column p {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-footer-column a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.8rem;
}

.detail-footer-column a:hover,
.detail-footer-social a:hover,
.detail-footer-legal a:hover {
  color: var(--text);
}

.detail-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-footer-bar small {
  color: var(--text-dim);
  font-size: 0.72rem;
}

.detail-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.detail-footer-legal a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.72rem;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-surface,
.detail-footer {
  animation: rise-in 620ms ease both;
}

@media (max-width: 1180px) {
  .site-header,
  .hero-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-right: 0;
  }

  .hero-follower-markers {
    inset: 0 -2% 0 -2%;
  }

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

  .pricing-rules-grid {
    grid-template-columns: 1fr;
  }

  .plugin-sections {
    grid-template-columns: 1fr;
  }

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

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

  .crypto-checkout-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-items: start;
  }

  .top-search {
    justify-self: stretch;
    width: 100%;
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .top-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-popover {
    left: 0;
    right: auto;
  }

  .showcase-card h2 {
    max-width: none;
  }

  .detail-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 900px) {
  .pricing-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

  .site-header,
  .hero-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .bottom-tray {
    padding: 16px;
  }

  .hero-follower-markers {
    opacity: 0.74;
  }

  .follower-marker {
    width: 78px;
    height: 38px;
    padding: 8px 8px;
    border-radius: 16px 16px 12px 12px;
  }

  .follower-marker strong {
    font-size: 0.66rem;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .detail-footer {
    padding: 0;
  }

  .top-actions,
  .login-entry,
  .login-trigger,
  .login-popover {
    width: 100%;
  }

  .detail-footer-shell {
    padding: 22px 18px 16px;
    border-radius: 0;
  }

  .detail-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .detail-footer-links {
    justify-content: flex-start;
  }

  .detail-footer-copy {
    max-width: none;
  }

  .detail-footer-bar,
  .detail-footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-footer-bar {
    gap: 10px;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .hero-actions,
  .billing-toggle,
  .payment-panel {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .login-popover {
    position: static;
    margin-top: 10px;
    width: 100%;
  }

  .crypto-sheet-head {
    flex-direction: column;
    align-items: stretch;
  }

  .crypto-sheet-copy {
    text-align: left;
  }

  .primary-button,
  .secondary-button,
  .ghost-button,
  .search-button,
  .billing-option,
  .payment-method-card {
    width: 100%;
  }

  .metric-block {
    padding: 14px;
  }

  .google-user-facts {
    grid-template-columns: 1fr;
  }

  .payment-modal-root {
    padding: 16px;
  }

  .payment-modal {
    padding: 20px;
    border-radius: 24px;
  }

  .crypto-qr-shell {
    width: min(100%, 240px);
  }

  .payment-modal-actions {
    flex-direction: column;
  }
}
