/* Reach More — shared layout and components */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- entrance animation ---------- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gridRevealV {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes gridRevealH {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #06110b;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- top navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-faint);
}

.nav {
  display: flex;
  align-items: center;
  padding: 18px var(--gutter);
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  margin-inline-start: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.nav-link small {
  color: var(--accent);
  opacity: 0.8;
  font-size: 12px;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--fg);
}

.nav-cta {
  display: none;
}

.nav-burger {
  margin-inline-start: auto;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-burger span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease-in-out), opacity 0.3s var(--ease-in-out);
}

.nav-burger span:first-child {
  transform: translateY(-4px);
}

.nav-burger span:last-child {
  transform: translateY(4px);
}

.nav-burger[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .nav-burger {
    display: none;
  }
}

/* mobile menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
}

.mobile-menu[data-open="true"] {
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-in-out);
}

.mobile-menu[data-open="true"] .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 96px 20px 40px;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.4s var(--ease-in-out), transform 0.4s var(--ease-in-out);
}

.mobile-menu[data-open="true"] .mobile-menu-panel {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu-list a {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.mobile-menu-list small {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
}

.mobile-menu-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-faint);
}

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

.hero-grid .v-line {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--grid-line);
  transform-origin: top;
  animation: gridRevealV 1.1s var(--ease-out) forwards;
}

.hero-grid .h-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--grid-line);
  transform-origin: left;
  animation: gridRevealH 1.1s var(--ease-out) forwards;
}

.hero-grid .plus {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: scaleIn 0.5s var(--ease-out) forwards;
}

.hero-grid .plus::before,
.hero-grid .plus::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.hero-grid .plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.hero-grid .plus::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px var(--gutter) 48px;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero p.lede {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 46ch;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* process nodes (adapted from ms-17 central node diagram) */

.process {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 96px;
}

.process-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  max-width: var(--container);
  margin-inline: auto;
  position: relative;
}

.process-node {
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
}

.process-node .index {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.process-node h3 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.process-node p {
  margin-top: 10px;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-connector {
  display: none;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-connector {
    display: block;
    position: absolute;
    top: 24px;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.3) 0,
      rgba(255, 255, 255, 0.3) 6px,
      transparent 6px,
      transparent 12px
    );
    width: calc(100% / 3 - 28px);
  }
  .process-connector.c1 {
    left: calc(100% / 3 - 14px);
  }
  .process-connector.c2 {
    left: calc(200% / 3 - 14px);
  }
}

/* ---------- info strip (chamfered card, from ms-17 bottom row) ---------- */

.chamfer-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%, 0 82%);
  max-width: 320px;
}

.chamfer-card .badge {
  display: inline-block;
  background: var(--accent);
  color: #06110b;
  font-size: 12px;
  padding: 2px 6px;
  margin-bottom: 12px;
}

.chamfer-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg);
}

.chamfer-card a {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
}

.chamfer-card a:hover {
  text-decoration: underline;
}

/* ---------- section shell ---------- */

.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border-faint);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 22px;
}

.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-muted);
}

.section-head h1,
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-head p {
  margin-top: 18px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}

/* ---------- benefit triptych (guardnet lineage) ---------- */

.benefits-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

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

.benefit-card {
  position: relative;
  min-height: 280px;
  border-radius: 18px;
  background: #0c0c0c;
  border: 1px solid var(--border-faint);
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.benefit-card .blob {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--blob-blue);
  filter: blur(70px);
  opacity: 0.45;
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.benefit-card .step {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 30ch;
}

/* ---------- pricing cards (rocket-pricing lineage) ---------- */

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

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

.price-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  --spot-x: -9999px;
  --spot-y: -9999px;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    220px circle at var(--spot-x) var(--spot-y),
    rgba(175, 221, 255, 0.55),
    transparent 65%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-card.featured {
  background: var(--bg-card-featured);
  border-color: var(--accent);
}

.price-card .plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #06110b;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .plan-name {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.price-card .plan-divider {
  margin-top: 12px;
  border-top: 1px solid var(--border-faint);
}

.price-card .plan-price {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}

.price-card .plan-price .amount {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.price-card .plan-price .period {
  font-size: 14px;
  color: var(--fg-muted);
}

.price-card .plan-setup {
  margin-top: 6px;
  font-size: 13px;
  color: var(--fg-muted);
}

.price-card .plan-desc {
  margin-top: 14px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.price-card .plan-cta {
  margin-top: 24px;
}

.price-card .plan-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-faint);
  font-size: 14px;
  color: var(--fg);
}

.price-card .plan-features li:first-child {
  border-top: none;
}

.plan-features .mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.plan-features .mark svg {
  width: 9px;
  height: 9px;
}

.pricing-note {
  margin-top: 40px;
  border: 1px dashed var(--border);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 720px;
}

.pricing-note strong {
  color: var(--fg);
}

/* ---------- CTA band ---------- */

.cta-band {
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 38px);
}

.cta-band p {
  margin: 16px auto 0;
  max-width: 46ch;
  color: var(--fg-muted);
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  border: 1px solid var(--border-faint);
  border-radius: 18px;
  padding: 30px;
  background: var(--bg-card);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-list .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

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

.contact-list address {
  font-style: normal;
  color: var(--fg-muted);
  line-height: 1.6;
}

.contact-list .label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  margin-bottom: 4px;
}

/* ---------- policy / legal pages (paper card on dark shell) ---------- */

.legal-shell {
  padding: 64px 0 100px;
}

.legal-hero {
  max-width: var(--measure);
  margin: 0 auto 40px;
  padding-inline: var(--gutter);
}

.legal-hero .section-tag {
  margin-bottom: 20px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.legal-hero .updated {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-faint);
}

.legal-paper {
  max-width: 880px;
  margin: 0 auto;
  margin-inline: auto;
  padding: 48px clamp(24px, 6vw, 72px);
  background: var(--paper-bg);
  color: var(--paper-fg);
  border-radius: 4px;
}

@media (min-width: 640px) {
  .legal-paper {
    margin-inline: var(--gutter);
  }
}
@media (min-width: 940px) {
  .legal-paper {
    margin-inline: auto;
  }
}

.legal-paper > * + * {
  margin-top: 1.1em;
}

.legal-paper h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-top: 2.2em;
  padding-top: 0.2em;
  color: var(--paper-fg);
}

.legal-paper h2:first-of-type {
  margin-top: 1.4em;
}

.legal-paper h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 1.6em;
}

.legal-paper p,
.legal-paper li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper-fg);
  max-width: var(--measure);
}

.legal-paper ul,
.legal-paper ol {
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.legal-paper ul {
  list-style: disc;
}

.legal-paper ol {
  list-style: decimal;
}

.legal-paper a {
  color: var(--paper-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-paper strong {
  font-weight: 700;
}

.legal-paper .lede {
  font-size: 18px;
  color: var(--paper-muted);
  max-width: var(--measure);
}

.legal-toc {
  margin-top: 1.6em;
  padding: 18px 22px;
  border: 1px solid var(--paper-border);
  border-radius: 8px;
  background: rgba(23, 24, 26, 0.03);
}

.legal-toc p.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper-muted);
  margin-bottom: 10px;
}

.legal-toc ol {
  columns: 1;
  font-size: 14px;
}

@media (min-width: 640px) {
  .legal-toc ol {
    columns: 2;
    column-gap: 24px;
  }
}

.legal-toc a {
  text-decoration: none;
  color: var(--paper-accent);
}

.legal-note {
  border-left: 3px solid var(--paper-accent);
  padding: 4px 0 4px 18px;
  color: var(--paper-muted);
  font-size: 15px;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-faint);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 24px;
  }
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--fg-faint);
}

/* ---------- misc page: about ---------- */

.prose {
  max-width: 68ch;
}

.prose > * + * {
  margin-top: 1.1em;
}

.prose p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--fg);
  margin-top: 2em;
}

.fact-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .fact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fact-card {
  border: 1px solid var(--border-faint);
  padding: 20px;
}

.fact-card .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.fact-card p {
  margin-top: 8px;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* plan summary teaser (home) */

.plan-teaser-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

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

.plan-teaser {
  border: 1px solid var(--border-faint);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-teaser .plan-name {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.plan-teaser .amount {
  font-family: var(--font-display);
  font-size: 30px;
}

.plan-teaser p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

.plan-teaser a {
  margin-top: auto;
  font-size: 13px;
  color: var(--accent);
}

.plan-teaser a:hover {
  text-decoration: underline;
}
