:root {
  --bg: #040506;
  --surface: #0b0f14;
  --surface-2: #111820;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f6f8fc;
  --muted: #8b95a8;
  --brand: #3ddb84;
  --brand-bright: #5ef59e;
  --brand-dim: rgba(61, 219, 132, 0.1);
  --brand-glow: rgba(61, 219, 132, 0.22);
  --font: "Onest", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shell: min(92rem, calc(100vw - 3rem));
  --radius: 16px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--topbar-height, 3.55rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-left: auto;
  margin-right: auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -20%, rgba(61, 219, 132, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 50%, rgba(61, 219, 132, 0.06), transparent 50%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 10%, transparent 72%);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.section[id] {
  scroll-margin-top: calc(var(--topbar-height) + 0.75rem);
}

/* ── UI primitives ── */
.pill {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-bright);
  background: var(--brand-dim);
  border: 1px solid rgba(61, 219, 132, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.15rem;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn--primary {
  color: #040506;
  background: var(--brand-bright);
  box-shadow: 0 4px 24px var(--brand-glow);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(61, 219, 132, 0.35);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: rgba(61, 219, 132, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.btn--xl {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* ── Hero ── */
.hero {
  padding-bottom: 0;
}

.hero__intro {
  text-align: center;
  padding: 3.5rem 0 3rem;
  max-width: 52rem;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.35rem, 5.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  color: var(--brand-bright);
}

.hero__lead {
  margin: 1.35rem auto 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Product frame */
.hero__stage {
  position: relative;
  padding: 0 0 4rem;
}

.hero__stage .shell {
  position: relative;
  padding-top: 2.75rem;
  padding-bottom: 0.5rem;
}

.product-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 40px 100px -30px rgba(0, 0, 0, 0.7),
    0 0 80px -20px var(--brand-glow);
  overflow: hidden;
}

.product-frame__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.product-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.product-frame__dot:nth-child(1) {
  background: #f87171;
}
.product-frame__dot:nth-child(2) {
  background: #fbbf24;
}
.product-frame__dot:nth-child(3) {
  background: var(--brand);
}

.product-frame__url {
  margin-left: 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
}

.product-ui {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  min-height: 320px;
}

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

.product-ui__sidebar,
.product-ui__main,
.product-ui__preview {
  padding: 1.1rem;
  border-right: 1px solid var(--border);
}

.product-ui__preview {
  border-right: none;
}

.product-ui__label {
  margin: 0 0 0.75rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-ui__upload {
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.45rem;
  border-radius: 8px;
  border: 1px dashed var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.product-ui__upload--done {
  border-style: solid;
  border-color: rgba(61, 219, 132, 0.2);
  background: var(--brand-dim);
}

.product-ui__file {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text);
  line-height: 1.5;
}

.product-ui__globals {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.product-ui__btn {
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  cursor: default;
}

.product-ui__btn--accent {
  color: #040506;
  background: var(--brand-bright);
  border-color: transparent;
}

.product-ui__sections {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-ui__section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.45rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.product-ui__section--active {
  border-color: rgba(61, 219, 132, 0.35);
  background: var(--brand-dim);
}

.product-ui__section > span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--brand);
  font-weight: 600;
}

.product-ui__section strong {
  display: block;
  font-size: 0.88rem;
}

.product-ui__section em {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.product-ui__tree {
  padding: 0.5rem 0;
}

.tree-node {
  padding: 0.28rem 0.5rem;
  margin-bottom: 0.2rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--muted);
}

.tree-node--in {
  margin-left: 0.75rem;
}

.tree-node--deep {
  margin-left: 1.5rem;
}

.tree-node--on {
  color: var(--text);
  background: var(--brand-dim);
}

.tree-node--tag {
  margin-left: 0.75rem;
  color: var(--brand);
}

.product-ui__paste {
  margin: 0.75rem 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-bright);
}

.hero__float {
  position: absolute;
  display: flex;
  gap: 0.4rem;
  pointer-events: none;
}

.hero__float--ai {
  top: 0.35rem;
  left: 0;
  flex-wrap: wrap;
  max-width: min(100%, 20rem);
}

.hero__float--wf {
  bottom: 0.85rem;
  right: 0.5rem;
}

.hero__float-tag {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero__float-wf {
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--brand-bright);
  background: var(--surface-2);
  border: 1px solid rgba(61, 219, 132, 0.35);
  box-shadow: 0 8px 32px var(--brand-glow);
}

@media (max-width: 1100px) {
  .hero__float {
    display: none;
  }
}

/* Logos band */
.logos-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  padding: 2rem 0;
}

.logos-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.logos-band__group {
  text-align: center;
}

.logos-band__title {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.logos-band__group--highlight .logos-band__title {
  color: var(--brand);
}

.logos-band__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.logos-band__items span {
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
}

.logos-band__group--highlight .logos-band__items span {
  border-color: rgba(61, 219, 132, 0.25);
  background: var(--brand-dim);
}

.logos-band__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
}

.logos-band__arrow span {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .logos-band__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.35rem;
  }

  .logos-band__group {
    width: 100%;
  }

  .logos-band__arrow {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.15rem 0;
  }

  .logos-band__arrow svg {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section--split,
.section--embed {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--embed {
  background:
    radial-gradient(ellipse 70% 50% at 100% 40%, rgba(61, 219, 132, 0.08), transparent 55%),
    rgba(0, 0, 0, 0.22);
}

@media (min-width: 1024px) {
  .split--embed {
    grid-template-columns: 0.92fr 1.08fr;
  }
}

.embed-section__cta-wrap {
  margin: 1.75rem 0 0;
}

/* Code embed — landing showcase mock */
.embed-showcase {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(61, 219, 132, 0.08),
    0 24px 64px -32px rgba(0, 0, 0, 0.85);
}

.embed-showcase__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.embed-showcase__tab {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  padding: 0.22rem 0.45rem;
  border-radius: 6px;
  color: var(--muted);
  border: 1px solid transparent;
}

.embed-showcase__tab--on {
  color: var(--brand-bright);
  background: var(--brand-dim);
  border-color: rgba(61, 219, 132, 0.25);
}

.embed-showcase__bar-actions {
  display: flex;
  gap: 0.45rem;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.58rem;
  color: rgba(220, 228, 245, 0.35);
}

.embed-showcase__editor {
  display: flex;
  min-height: 11.5rem;
}

.embed-showcase__gutter {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.45rem 0.85rem 0.7rem;
  border-right: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: right;
  color: rgba(220, 228, 245, 0.32);
}

.embed-showcase__gutter span {
  display: block;
  height: calc(0.68rem * 1.6);
}

.embed-showcase__code {
  flex: 1;
  margin: 0;
  padding: 0.85rem 0.75rem;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.6;
  color: #e8eef8;
  background: transparent;
}

.embed-showcase__code code {
  display: block;
}

.embed-showcase .tok-tag {
  color: #7ee8b8;
}

.embed-showcase .tok-attr {
  color: #93c5fd;
}

.embed-showcase .tok-str {
  color: #fcd34d;
}

.embed-showcase .tok-sel {
  color: #c4b5fd;
}

.embed-showcase .tok-prop {
  color: #c4b5fd;
}

.embed-showcase .tok-val {
  color: #fdba74;
}

.embed-showcase .tok-brace {
  color: rgba(220, 228, 245, 0.55);
}

.embed-showcase__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.embed-showcase__copy {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  color: #040506;
  font-weight: 700;
  background: var(--brand-bright);
  box-shadow: 0 4px 20px var(--brand-glow);
}

.section-head {
  margin-bottom: 3rem;
  max-width: 40rem;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-lead {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.section-head--center .section-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Path grid */
.path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .path-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.path-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 100%;
}

.path-card--accent {
  border-color: rgba(61, 219, 132, 0.3);
  background: linear-gradient(160deg, var(--brand-dim), var(--surface));
}

.path-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  color: var(--brand-bright);
  background: var(--brand-dim);
  border: 1px solid rgba(61, 219, 132, 0.22);
}

.path-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.path-card--accent .path-card__icon {
  background: rgba(61, 219, 132, 0.18);
  border-color: rgba(61, 219, 132, 0.35);
}

.path-card__n {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.path-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

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

/* Split product section */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.split__visual {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

@media (max-width: 700px) {
  .split__visual {
    flex-direction: column;
  }
}

.code-panel {
  flex: 1;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.code-panel--wf {
  border-color: rgba(61, 219, 132, 0.3);
  box-shadow: 0 0 40px -10px var(--brand-glow);
}

.code-panel__tag {
  margin: 0 0 0.75rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.code-panel--wf .code-panel__tag {
  color: var(--brand);
}

.code-panel pre {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--muted);
}

.code-panel .kw {
  color: #c4b5fd;
}
.code-panel .prop {
  color: var(--brand-bright);
}
.code-panel .dim {
  color: var(--text);
}

.split__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.split__connector span {
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .split__connector span {
    writing-mode: horizontal-tb;
  }
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand);
}

/* Features */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feat {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.feat__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 10px;
  color: var(--brand-bright);
  background: var(--brand-dim);
  border: 1px solid rgba(61, 219, 132, 0.2);
}

.feat__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.feat h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
}

.feat p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

#compare {
  scroll-margin-top: calc(var(--topbar-height, 3.55rem) + 0.75rem);
}

/* Pricing */
.section--pricing {
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 1rem;
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 100%;
}

.price-card--featured {
  border-color: rgba(61, 219, 132, 0.45);
  background: linear-gradient(165deg, rgba(61, 219, 132, 0.1) 0%, var(--surface) 42%);
  box-shadow:
    0 0 0 1px rgba(61, 219, 132, 0.12),
    0 20px 56px -24px var(--brand-glow);
}

@media (min-width: 900px) {
  .price-card--featured {
    padding: 2rem 1.65rem 1.65rem;
    transform: scale(1.04);
    z-index: 1;
  }
}

.price-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #040506;
  background: var(--brand-bright);
  box-shadow: 0 4px 20px var(--brand-glow);
  white-space: nowrap;
}

.price-card__head {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.price-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-card__tagline {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  min-height: 2.6em;
}

.price-card__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.45rem;
}

.price-card__amount {
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.price-card--featured .price-card__amount {
  color: var(--brand-bright);
}

.price-card__period {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

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

.price-card__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(246, 248, 252, 0.88);
}

.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-bright);
}

.price-card__cta {
  width: 100%;
  margin-top: auto;
}

.price-card--featured .price-card__cta {
  box-shadow: 0 8px 32px rgba(61, 219, 132, 0.35);
}

.pricing-note {
  max-width: 36rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Compare */
.compare {
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.compare__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.compare__row:last-child {
  border-bottom: none;
}

.compare__row--head {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.3);
}

.compare__hl {
  color: var(--brand-bright);
  font-weight: 700;
}

.compare__yes {
  color: var(--brand-bright);
  font-weight: 700;
  font-size: 1.1rem;
}

.compare__muted {
  color: var(--muted);
}

.compare__partial {
  color: #d4a853;
  font-size: 0.85rem;
}

/* CTA */
.cta {
  padding: 5rem 0;
}

.cta__inner {
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 219, 132, 0.25);
  background: linear-gradient(180deg, var(--brand-dim), transparent);
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
}

.cta__inner > p:not(.cta__fine) {
  margin: 0.75rem auto 1.75rem;
  max-width: 28rem;
  color: var(--muted);
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.cta__fine {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer {
  padding: 2rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  margin-bottom: 1rem;
}

.footer__links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__links a:hover {
  color: var(--text);
}

.footer p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.footer__meta {
  margin-top: 0.5rem !important;
  opacity: 0.75;
}

/* Login */
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.login-card {
  width: 100%;
  max-width: 22rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.login-card__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  font-family: var(--mono);
  font-weight: 600;
}

.login-card h1 {
  margin: 0;
  font-size: 1.35rem;
}

.login-card > p {
  margin: 0.4rem 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.login-field {
  display: block;
  margin-bottom: 0.85rem;
}

.login-field span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.login-field input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.login-field input:focus {
  outline: none;
  border-color: rgba(61, 219, 132, 0.45);
}

.login-err {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: #fb7185;
}

.login-card .btn--primary {
  width: 100%;
  margin-bottom: 0.75rem;
}

.login-back {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

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

.panel--hidden {
  display: none !important;
}
