/* UpworkerX marketing — aligned with app typography (Fraunces + DM Sans) */

:root {
  --bg: #0f1114;
  --surface: #181b21;
  --surface-hover: #1e2229;
  --text: #eceef2;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --accent: #5eb8aa;
  --accent-hover: #6fc4b6;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 10px;
  --radius-sm: 8px;
  --max: 42rem;
  --max-wide: 56rem;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Decision UX (matches product semantics) */
  --decision-apply: #22c55e;
  --decision-apply-bg: rgba(34, 197, 94, 0.14);
  --decision-maybe: #eab308;
  --decision-maybe-bg: rgba(234, 179, 8, 0.14);
  --decision-skip: #6b7280;
  --decision-skip-bg: rgba(107, 114, 128, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

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

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 60% at 50% -30%, rgba(94, 184, 170, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(94, 184, 170, 0.04), transparent 50%),
    var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-size: 0.88em;
  padding: 0.15em 0.4em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(15, 17, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.site-header__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.875rem clamp(1rem, 4vw, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav__links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem 0.85rem;
  }

  .site-nav__auth {
    margin-left: auto;
  }
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  line-height: 1.2;
}

.brand:hover {
  color: var(--accent);
  text-decoration: none;
}

.brand:focus-visible,
.site-nav__link:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}

.site-nav__auth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.site-nav__auth .btn {
  text-decoration: none;
}

.site-nav__auth .btn:hover {
  text-decoration: none;
}

.site-nav__link {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav__link:hover {
  color: var(--text);
  text-decoration: none;
}
.site-nav__link--active {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}

.btn--primary {
  color: #0a0c0e;
  background: var(--accent);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  text-decoration: none;
}

.btn--secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}

.btn--secondary:hover {
  background: var(--surface);
  border-color: var(--border-strong);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 8vw, 4.5rem) clamp(1rem, 4vw, 1.75rem) clamp(2.5rem, 6vw, 4rem);
}

.hero__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__title {
  margin: 0 0 1.25rem;
  max-width: min(22ch, 100%);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text);
}

.hero__accent {
  color: var(--accent);
}

.hero__lede {
  margin: 0 0 1.75rem;
  max-width: var(--max);
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero__subnav {
  margin: 0 0 1.75rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.hero__subnav-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.hero__subnav-link:hover {
  text-decoration: underline;
}

.hero__subnav-sep {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__chip {
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero__dashboard-hint {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.hero__dashboard-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.hero__dashboard-link:hover {
  text-decoration: underline;
}

.hero__dashboard-note {
  display: inline;
  margin-left: 0.35rem;
  font-weight: 400;
  color: var(--text-dim);
}

@media (max-width: 480px) {
  .hero__dashboard-note {
    display: block;
    margin-left: 0;
    margin-top: 0.25rem;
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 1.75rem);
}

.section--band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

.section--tight {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.section__head {
  margin-bottom: 1.75rem;
  text-align: center;
}

.section__label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.section__title {
  margin: 0 0 0.375rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* Flow */
.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.flow__step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 640px) {
  .flow__step {
    grid-template-columns: 3rem 1fr;
    padding: 1.5rem 1.5rem;
  }
}

.flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(94, 184, 170, 0.12);
  border-radius: 6px;
}

.flow__heading {
  margin: 0 0 0.375rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

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

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

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

.feature-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.feature-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
}

.feature-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* Value proposition (marketing — no tech stack) */
.value-block {
  margin: 0 auto;
  max-width: 40rem;
  padding: 1.25rem 1.35rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.12);
}

.value-block__label {
  margin: 0 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.value-block__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.value-block__text strong {
  color: var(--text);
  font-weight: 600;
}

/* Account — login / sign up (same API as /app/) */
#account {
  scroll-margin-top: 4.25rem;
}

.section--account {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(1.5rem, 3.5vw, 2.25rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 55%);
}

.account-shell {
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.account-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.account-head .section__label {
  margin-bottom: 0.5rem;
}

.account-head .section__title {
  margin-bottom: 0.75rem;
}

.account-intro__text {
  margin: 0 auto;
  max-width: 26rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.account-card-wrap {
  width: 100%;
}

.account-card {
  margin: 0;
  padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.account-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.25rem;
  padding: 3px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.account-tab {
  flex: 1;
  margin: 0;
  padding: 0.5rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-sm) - 2px);
  cursor: pointer;
  transition:
    background 0.15s var(--ease),
    color 0.15s var(--ease);
}

.account-tab:hover {
  color: var(--text);
}

.account-tab.is-active {
  color: #0a0c0e;
  background: var(--accent);
}

.account-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.account-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.account-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
}

.account-input {
  width: 100%;
  margin: 0;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.account-input::placeholder {
  color: var(--text-dim);
}

.account-input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.account-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(94, 184, 170, 0.35);
}

.account-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.account-submit {
  width: 100%;
  margin-top: 0.25rem;
  justify-content: center;
}

.account-msg {
  margin: 1rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.account-msg.is-err {
  color: #fecaca;
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.35);
}

.account-msg.is-ok {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.account-or {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.25rem 0 1rem;
}

.account-or-line {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

.account-or-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.account-google {
  width: 100%;
  justify-content: center;
}

.account-footnote {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.45;
}

/* CTA */
.section--cta {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.cta {
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.12);
}

.cta--compact {
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
}

.cta__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.cta__text {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1rem, 4vw, 1.75rem);
}

.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem 2rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
}

.site-footer__brand-block {
  min-width: 0;
}

.site-footer__brand {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.site-footer__domain {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer__hint {
  margin: 0;
  max-width: 40rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Conversion landing (hero split, product mock, badges) --- */

.hero-lp {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1rem, 4vw, 1.75rem) clamp(2.5rem, 7vw, 4rem);
  max-width: 72rem;
  margin: 0 auto;
}

.hero-lp--simple {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-lp--simple .hero-lp__title {
  margin-bottom: 0.75rem;
}

.hero-lp--simple .hero-lp__lede {
  margin-bottom: 1.5rem;
}

.hero-lp--simple .hero-lp__actions {
  align-items: center;
}

.hero-lp__grid {
  display: grid;
  gap: 2.5rem 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-lp__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

.hero-lp__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-lp__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
}

.hero-lp__title-em {
  color: var(--accent);
  display: inline-block;
}

.hero-lp__lede {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 38rem;
}

.hero-lp__lede strong {
  color: var(--text);
  font-weight: 600;
}

.hero-lp__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.btn--lg {
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
}

.hero-lp__alt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.hero-lp__alt a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.hero-lp__alt a:hover {
  text-decoration: underline;
}

/* Product mock (screenshot substitute) */
.product-mock {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, var(--surface) 0%, #12151c 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

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

.product-mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.5;
}

.product-mock__dot:first-child {
  background: #ef4444;
  opacity: 1;
}
.product-mock__dot:nth-child(2) {
  background: #eab308;
  opacity: 1;
}
.product-mock__dot:nth-child(3) {
  background: #22c55e;
  opacity: 1;
}

.product-mock__url {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.product-mock__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.product-mock__job-title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.product-mock__decision {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.decision-score {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.decision-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid transparent;
}

.decision-badge--sm {
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  margin-right: 0.5rem;
}

.decision-badge--apply {
  color: #ecfdf5;
  background: var(--decision-apply-bg);
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.12);
}

.decision-badge--maybe {
  color: #fefce8;
  background: var(--decision-maybe-bg);
  border-color: rgba(234, 179, 8, 0.45);
}

.decision-badge--skip {
  color: #f3f4f6;
  background: var(--decision-skip-bg);
  border-color: rgba(107, 114, 128, 0.4);
}

.product-mock__reasons {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.product-mock__reasons li {
  margin-bottom: 0.45rem;
}

.reason-ok {
  color: var(--decision-apply);
  margin-right: 0.35rem;
  font-weight: 700;
}

.section--lp {
  padding-top: clamp(2.75rem, 6vw, 4rem);
  padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.showcase {
  display: grid;
  gap: 1.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .showcase {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    max-width: 56rem;
  }
}

.showcase__card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.showcase__label {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.showcase__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.showcase__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.showcase__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.showcase__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.showcase__bullets li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.split-compare {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .split-compare {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.split-compare__col {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.split-compare__col--before {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.15);
}

.split-compare__col--after {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.18);
}

.split-compare__heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.split-compare__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.split-compare__list li {
  margin-bottom: 0.4rem;
}

.quotes {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 56rem;
}

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

.quote-card {
  margin: 0;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.quote-card__text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.quote-card__by {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.pricing-single {
  max-width: 22rem;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.price-card--featured {
  border-color: rgba(94, 184, 170, 0.35);
  background: rgba(94, 184, 170, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.price-card__trial {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-card__after {
  margin: -0.35rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.price-card__name {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.price-card__price {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-card__period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card__desc {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.pricing-note {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.45;
}
