:root {
  --brand: #a51c30;
  --brand-hover: #8a1727;
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.7);
  --border: rgba(0, 0, 0, 0.1);
}

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

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-inline: 1rem;
}

.landing-container {
  padding-block: 3rem;
}

.hero {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
  margin: 0 auto 2.5rem;
}

.pricing-logo {
  max-width: 12rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.landing-title {
  max-width: 56rem;
  margin: 2rem auto 0;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.landing-subtitle {
  max-width: 42rem;
  margin: 2rem auto 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.landing-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding-inline: 1.25rem;
  border: 1px solid var(--brand);
  border-radius: 0.5rem;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  transition: background-color 150ms, border-color 150ms, color 150ms;
}

.button:hover {
  background: var(--brand);
  color: #ffffff;
}

.button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.button-primary:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
}

.landing-button {
  height: 3.5rem;
  gap: 0.75rem;
  padding-inline: 2rem;
  font-size: 1rem;
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer {
  margin-top: auto;
  padding-block: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer-tagline {
  margin-bottom: 0.75rem;
}

.pricing-container {
  padding-block: 5rem;
}

.pricing-header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  margin: 1.25rem auto 0;
  color: var(--brand);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 2.5rem;
}

.pricing-subtitle {
  max-width: 28rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.trial-row {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.trial {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--brand);
  border-radius: 9999px;
  background: rgba(165, 28, 48, 0.05);
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  margin-block: 0;
}

.plans {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 2rem auto 0;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #ffffff;
}

.plan-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.plan-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-heading h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.plan-copy {
  text-align: left;
  padding-left: 1.2rem;
}

.plan-copy li {
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.amount {
  color: var(--brand);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.cadence {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
  line-height: 1.5rem;
}

.plan-copy {
  flex: 1;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.plan .button {
  margin-top: 1.5rem;
}

.pricing-footer {
  margin-top: 3rem;
  color: rgba(0, 0, 0, 0.6);
}

.content-container {
  max-width: 56rem;
  padding-block: 4rem 5rem;
}

.content-section {
  margin-top: 3.5rem;
}

.content-hero {
  margin-top: 0;
}

.content-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  font-weight: 700;
}

.content-title {
  margin: 1rem 0 1rem;
  color: var(--brand);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.content-subhead {
  max-width: 47rem;
  margin: 0;
  font-size: 1.375rem;
  color: var(--text);
}

.content-section h2 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.content-section h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.content-section p {
  font-size: 1.125rem;
  margin: 0.75rem 0;
  color: var(--text);
}

.content-section ul,
.content-section ol {
  padding-left: 1.4rem;
  font-size: 1.125rem;
}

.content-section li {
  margin: 0.5rem 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.cta-row .button {
  height: auto;
  padding: 0.75rem 1.25rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  background: #ffffff;
}

.card h3 {
  color: var(--brand);
}

.card p,
.card ul {
  margin-bottom: 0;
}

.note {
  background: rgba(165, 28, 48, 0.05);
  border: 1px solid rgba(165, 28, 48, 0.15);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
}

.note p {
  font-size: 1rem;
  margin: 0;
}

.content-small {
  font-size: 0.9375rem;
  color: var(--muted);
}

.content-footer {
  text-align: left;
}

.content-footer p {
  margin: 0 0 0.5rem;
}

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

/* Legal documents (terms, privacy, etc.): narrow column, small dense type */
/* .container is also applied; its responsive max-widths need overriding, hence the doubled selector */
.container.legal-container {
  max-width: 54rem;
  padding-block: 5rem 6rem;
  padding-inline: 1.5rem;
}

.legal-section {
  margin-top: 2.75rem;
}

.legal-hero {
  margin-top: 0;
}

.legal-eyebrow {
  margin: 0;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.legal-title {
  margin: 1rem 0;
  color: var(--brand);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-subhead {
  max-width: 47rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-section h2 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.legal-section h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  margin: 0.75rem 0;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.3;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.4rem;
}

.legal-section li {
  margin: 0.5rem 0;
}

.legal-small {
  color: var(--muted);
  font-size: 0.8125rem;
}

.legal-footer {
  text-align: center;
}

.legal-footer p {
  margin: 0 0 0.5rem;
}

.legal-footer-links {
  margin-top: 0.75rem;
}

.legal-footer-links a {
  color: #555;
  font-weight: 400;
}

.legal-footer-links a:hover {
  color: var(--brand);
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-inline: 2rem;
  }

  .landing-container {
    padding-block: 4rem;
  }

  .landing-title {
    font-size: 1.875rem;
  }

  .pricing-container {
    padding-block: 7rem;
    padding-inline: 1rem;
  }

  .pricing-title {
    font-size: 3rem;
    line-height: 1;
  }

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

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .landing-title {
    font-size: 2.25rem;
  }

  .pricing-title {
    font-size: 3.75rem;
  }

  .plans {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1400px;
  }
}