/* Public marketing / tenant landing — Revively brand palette (see brand guidelines). */
:root {
  --revively-teal: #0b6c81;
  --revively-teal-hover: #094e5f;
  --revively-mint: #59c593;
  --revively-mint-hover: #47b883;
  --revively-charcoal: #333333;
  --revively-muted: #5a5a5a;
  --revively-neutral: #fdfdfd;
  --revively-white: #ffffff;

  --text: var(--revively-charcoal);
  --muted: var(--revively-muted);
  --bg: var(--revively-neutral);
  --surface: var(--revively-white);
  --bg-elev: #f6fbfb;
  --border: rgba(51, 51, 51, 0.12);
  --accent: var(--revively-mint);
  --accent-dim: var(--revively-mint-hover);
  --accent-glow: rgba(89, 197, 147, 0.35);
  --primary-teal: var(--revively-teal);
  --radius: 12px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body.marketing.marketing--home {
  background-image: radial-gradient(ellipse 70% 45% at 90% -5%, rgba(89, 197, 147, 0.12), transparent 55%);
}

a {
  color: var(--primary-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

/* ——— Top bar ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(253, 253, 253, 0.92);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--primary-teal);
  text-decoration: none;
}

.site-logo__mark {
  width: 28px;
  height: auto;
  display: block;
}

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

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

.site-nav a:not(.btn) {
  color: var(--primary-teal);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:not(.btn):hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-nav a:not(.btn)[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.site-nav .btn--sm {
  margin-left: 0.15rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--primary-teal);
  outline-offset: 2px;
}

/* Vibrant mint — primary conversion CTAs */
.btn--primary {
  background: linear-gradient(180deg, var(--revively-mint) 0%, var(--revively-mint-hover) 100%);
  color: var(--revively-white);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--accent-glow);
  filter: brightness(1.03);
  color: var(--revively-white);
}

/* Standard teal — login / secondary emphasis */
.btn--teal {
  background: linear-gradient(180deg, var(--revively-teal) 0%, var(--revively-teal-hover) 100%);
  color: var(--revively-white);
  box-shadow: 0 2px 12px rgba(11, 108, 129, 0.25);
}

.btn--teal:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: var(--revively-white);
}

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

.btn--ghost:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  background: var(--bg);
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

/* ——— Layout blocks ——— */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__lede {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 42ch;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section__intro {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 60ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(89, 197, 147, 0.45);
  box-shadow: 0 8px 28px rgba(11, 108, 129, 0.08);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card a.stretched {
  color: inherit;
  text-decoration: none;
}

.card a.stretched:hover h3 {
  color: var(--primary-teal);
}

.pricing-placeholder {
  background: var(--surface);
  border: 1px dashed rgba(11, 108, 129, 0.35);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer__left {
  flex: 1 1 180px;
}

.footer__center {
  flex: 2 1 420px;
  text-align: center;
}

.footer__right {
  flex: 1 1 280px;
  text-align: right;
}

@media (max-width: 900px) {
  .footer__inner {
    justify-content: center;
  }

  .footer__left,
  .footer__center,
  .footer__right {
    flex: 1 1 100%;
    text-align: center;
  }
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--accent);
}

.footer-love {
  color: #ef4444;
  margin: 0 2px;
}

/* Tenant landing (minimal) */
.tenant-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 4rem;
  background: var(--bg);
}

.tenant-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

.tenant-hero p {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 36ch;
}

.tenant-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.feature-page .prose {
  max-width: 65ch;
}

.feature-page .prose h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 0;
}

.feature-page .prose p {
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ——— Homepage (marketing--home) ——— */
.home-hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}

.home-hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 70%, rgba(11, 108, 129, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(89, 197, 147, 0.1) 0%, transparent 42%);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .home-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-teal);
  background: rgba(11, 108, 129, 0.08);
  border: 1px solid rgba(11, 108, 129, 0.2);
  border-radius: 999px;
}

.home-hero__badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.home-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  max-width: 15ch;
  color: var(--text);
}

.home-hero__title em {
  font-style: italic;
  color: var(--primary-teal);
  font-weight: 500;
}

.home-hero__lede {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn--lg {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}

.btn--light {
  background: var(--surface);
  color: var(--primary-teal);
  border: 1px solid var(--primary-teal);
}

.btn--light:hover {
  background: rgba(11, 108, 129, 0.06);
  border-color: var(--primary-teal);
  color: var(--revively-teal-hover);
}

.home-hero__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 26rem;
}

.home-hero__checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.home-hero__check-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  opacity: 0.95;
  color: var(--primary-teal);
}

.home-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.home-hero__caption {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.85;
}

.home-mock {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow:
    0 24px 56px rgba(11, 108, 129, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

.home-mock__chrome {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(11, 108, 129, 0.06);
  border-bottom: 1px solid var(--border);
}

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

.home-mock__chrome span:nth-child(1) {
  background: #ff5f56;
}
.home-mock__chrome span:nth-child(2) {
  background: #ffbd2e;
}
.home-mock__chrome span:nth-child(3) {
  background: #27ca40;
}

.home-mock__body {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 200px;
}

.home-mock__sidebar {
  background: rgba(11, 108, 129, 0.06);
  border-right: 1px solid var(--border);
}

.home-mock__main {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-mock__toolbar {
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(11, 108, 129, 0.18), rgba(89, 197, 147, 0.22));
  opacity: 1;
}

.home-mock__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.home-mock__cell {
  border-radius: 8px;
  min-height: 56px;
  border: 1px solid var(--border);
}

.home-mock__cell--a {
  background: rgba(11, 108, 129, 0.12);
  grid-column: span 2;
  min-height: 72px;
}

.home-mock__cell--b {
  background: rgba(89, 197, 147, 0.18);
}

.home-mock__cell--c {
  background: rgba(253, 253, 253, 0.95);
}

.home-mock__cell--d {
  grid-column: span 2;
  background: rgba(11, 108, 129, 0.08);
  min-height: 48px;
}

/* Teal anchor band: trust + features */
.home-band--teal {
  background: linear-gradient(165deg, #085f73 0%, var(--revively-teal) 42%, #0a7a94 100%);
  padding: 2.75rem 0 3.5rem;
  margin: 0;
  scroll-margin-top: 5rem;
}

.home-band__features {
  padding-bottom: 0;
}

.home-band--teal .section__head {
  margin-bottom: 2rem;
}

.home-band--teal .section__eyebrow {
  color: var(--revively-mint);
}

.home-band--teal .section__title {
  color: var(--revively-neutral);
}

.home-band--teal .section__intro {
  color: rgba(253, 253, 253, 0.88);
}

.home-band--teal .home-features__footer .home-inline-link {
  color: var(--revively-mint);
}

.home-band--teal .home-features__footer .home-inline-link:hover {
  color: var(--revively-white);
}

.home-trust {
  padding: 0 0 2rem;
}

.home-trust__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 1.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.home-band--teal .home-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(253, 253, 253, 0.92);
  line-height: 1.45;
}

.home-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.home-band--teal .home-trust__icon {
  color: var(--revively-mint);
}

.home-trust__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--primary-teal);
  opacity: 0.95;
}

.section--tight {
  padding-top: 2.5rem;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-teal);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

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

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}

.home-feature {
  padding: 1.6rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-band--teal .home-feature {
  background: var(--revively-neutral);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.home-feature:hover {
  border-color: rgba(89, 197, 147, 0.45);
  box-shadow: 0 12px 36px rgba(11, 108, 129, 0.1);
  transform: translateY(-2px);
}

.home-band--teal .home-feature:hover {
  border-color: rgba(89, 197, 147, 0.55);
}

.home-feature__icon {
  margin-bottom: 1rem;
  color: var(--primary-teal);
}

.home-band--teal .home-feature__icon {
  color: var(--primary-teal);
}

.home-feature__icon-svg {
  width: 28px;
  height: 28px;
  display: block;
}

.home-feature__title {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.home-feature__link {
  color: inherit;
  text-decoration: none;
}

.home-feature__link:hover {
  color: var(--primary-teal);
}

.home-feature__summary {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

.home-feature__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-teal);
  text-decoration: none;
}

.home-feature__more:hover {
  color: var(--accent);
}

.home-features__footer {
  text-align: center;
  margin: 2rem 0 0;
}

.home-inline-link {
  font-weight: 600;
  color: var(--primary-teal);
  text-decoration: none;
}

.home-inline-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.home-steps {
  padding: 3rem 0 3.5rem;
}

.home-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .home-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: none;
  }
}

.home-steps__step {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(11, 108, 129, 0.06);
}

.home-steps__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--revively-white);
  background: linear-gradient(180deg, var(--revively-mint) 0%, var(--revively-mint-hover) 100%);
  border-radius: 10px;
}

.home-steps__step strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--text);
}

.home-steps__desc {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.home-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.home-price-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.home-price-card--featured {
  border-color: rgba(89, 197, 147, 0.55);
  background: linear-gradient(165deg, rgba(89, 197, 147, 0.12) 0%, var(--surface) 55%);
  box-shadow: 0 16px 48px rgba(11, 108, 129, 0.1);
}

.home-price-card__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--revively-white);
  background: var(--revively-mint);
  border-radius: 6px;
}

.home-price-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.home-price-card__for {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.home-price-card__amt {
  margin: 0 0 1.25rem;
}

.home-price-card__tbd {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.home-price-card__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.home-price-card__list li {
  margin-bottom: 0.35rem;
}

.home-pricing__note {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.home-pricing__note a {
  color: var(--accent);
  font-weight: 500;
}

.home-cta {
  margin: 2rem 0 0;
  padding: 3.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(89, 197, 147, 0.14) 0%, rgba(253, 253, 253, 0.95) 55%);
}

.home-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .home-cta__inner {
    flex-direction: row;
    align-items: center;
  }
}

.home-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.home-cta__text {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 1rem;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.section--last {
  padding-bottom: 1rem;
}

.home-security {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(11, 108, 129, 0.06);
}

.home-security__icon {
  flex-shrink: 0;
  color: var(--primary-teal);
}

.home-security__icon .home-feature__icon-svg {
  width: 40px;
  height: 40px;
}

.home-security__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.home-security__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 62ch;
}

#pricing,
#segments,
#smarter,
#resources {
  scroll-margin-top: 5rem;
}

/* ——— Homepage pivot (2025) ——— */
.home-hero__title--motto {
  max-width: none;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  line-height: 1.18;
  color: var(--text);
}

.home-universal {
  padding-top: 3rem;
}

.home-universal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .home-universal__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.home-universal__col {
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 6px 28px rgba(11, 108, 129, 0.05);
}

.home-universal__heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--primary-teal);
}

.home-universal__text {
  margin: 0 0 1rem;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.55;
}

.home-universal__meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.9;
}

.home-smarter {
  padding-top: 3.5rem;
}

.home-smarter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

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

.home-smarter__card {
  padding: 1.65rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(11, 108, 129, 0.06);
}

.home-smarter__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.home-smarter__lead {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-teal);
}

.home-smarter__text {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.58;
}

.home-smarter__footer {
  text-align: center;
  margin: 2rem 0 0;
}

.home-band.home-band--pro {
  padding: 3.75rem 0;
  margin: 2rem 0 0;
}

.home-band--pro__inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.home-band--pro__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--revively-neutral);
}

.home-band--pro__lede {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(253, 253, 253, 0.92);
}

.home-band--pro__note {
  margin: 1.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  font-style: italic;
  color: rgba(253, 253, 253, 0.72);
}

.home-cta--final {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 4rem;
}
