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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffcef;
  color: var(--tk-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

a:hover {
  opacity: 0.88;
}

button,
summary {
  transition:
    transform 0.12s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    opacity 0.15s ease;
}

button:hover {
  opacity: 0.94;
}

button:active {
  transform: scale(0.97);
}

button {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 4rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 242, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.025em;
  color: #231f1f;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  color: #525252;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  background: #17b75a;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 6px 12px rgba(23, 183, 90, 0.28);
}

.language-switcher {
  position: relative;
}

.lang-dropdown {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  color: var(--tk-ink);
  cursor: pointer;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 700;
}

.lang-current::-webkit-details-marker,
.lang-current::marker {
  display: none;
}

.lang-dropdown[open] .lang-current {
  border-color: rgba(23, 183, 90, 0.35);
  box-shadow: var(--shadow-glow-sm);
}

.chevron-icon {
  transition: transform 0.18s ease;
}

.lang-dropdown[open] .chevron-icon {
  transform: rotate(180deg);
}

.lang-popup {
  position: absolute;
  top: calc(100% + 0.625rem);
  right: 0;
  min-width: 12rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.lang-btn {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: none;
  border-radius: 0.875rem;
  background: transparent;
  text-align: left;
  color: var(--tk-ink);
  cursor: pointer;
}

.lang-btn:hover {
  background: rgba(23, 183, 90, 0.06);
  color: var(--tk-green-deep);
}

.lang-btn.active {
  background: #17b75a;
  color: #fff;
  box-shadow: var(--shadow-glow-sm);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffcef 0%, #f7f5db 80%, #e9f1d5 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(35, 31, 31, 0.045) 0.55px, transparent 0.55px),
    radial-gradient(rgba(255, 255, 255, 0.3) 0.6px, transparent 0.6px);
  background-size: 24px 24px, 18px 18px;
  background-position: 0 0, 12px 10px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-drip {
  position: absolute;
  pointer-events: none;
}

.hero-drip-top {
  top: 4.5rem;
  left: -2.5rem;
  width: min(15rem, 24vw);
  opacity: 0.35;
  transform: rotate(-12deg);
}

.hero-drip-bottom {
  right: -3.75rem;
  bottom: -1.5rem;
  width: min(20rem, 28vw);
  opacity: 0.22;
  transform: rotate(160deg) scaleX(-1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
  min-height: calc(100vh - 4.5rem);
  padding: 5.5rem 0 6rem;
}

.hero-copy {
  max-width: 37.5rem;
}

.hero-title {
  margin: 0 0 1.375rem;
  color: #231f1f;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.hero-title-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 33.75rem;
  margin: 0 0 2.25rem;
  color: #525252;
  font-family: var(--font-sans);
  font-size: 1.1875rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.primary-cta,
.secondary-cta,
.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 1.875rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-cta {
  background: #17b75a;
  color: #fff;
  box-shadow: 0 12px 22px rgba(23, 183, 90, 0.3);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 23, 0.1);
  color: #231f1f;
  backdrop-filter: blur(8px);
}

.sample-story {
  position: relative;
  max-width: 31.25rem;
  justify-self: center;
}

.story-voice-pill {
  position: absolute;
  top: -2.25rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.875rem 0.5rem 0.5rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.story-mic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #17b75a;
}

.story-voice-meta,
.story-voice-arrow,
.story-voice-state {
  font-family: var(--font-sans);
  font-size: 0.75rem;
}

.story-voice-meta {
  font-weight: 600;
  color: #231f1f;
}

.story-voice-arrow {
  color: #707070;
}

.story-voice-state {
  color: #008a50;
  font-weight: 600;
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 24px 56px -16px rgba(35, 31, 31, 0.18);
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.story-tag {
  padding: 0.32rem 0.625rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
}

.story-tag-solid {
  background: rgba(0, 0, 0, 0.04);
  color: #231f1f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-tag-green {
  background: #e6efea;
  color: #008a50;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-tag-soft {
  background: rgba(0, 0, 0, 0.04);
  color: #707070;
  font-size: 0.75rem;
  font-weight: 500;
}

.story-title {
  margin: 0.25rem 0;
  color: #231f1f;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.story-body {
  margin: 0;
  color: #525252;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.story-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-top: 0.875rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.story-avatars {
  display: flex;
}

.story-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.story-avatar + .story-avatar {
  margin-left: -0.625rem;
}

.story-avatar-green {
  background: #e6efea;
}

.story-avatar-peach {
  background: #fde2c8;
}

.story-avatar-pink {
  background: #fce7f3;
}

.story-tree-title {
  margin-bottom: 0.125rem;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
}

.story-tree-meta {
  color: #707070;
  font-family: var(--font-sans);
  font-size: 0.75rem;
}

.story-context {
  position: absolute;
  right: -0.625rem;
  bottom: -2rem;
  max-width: 15rem;
  padding: 0.875rem 1.125rem;
  background: #231f1f;
  color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.story-context-title {
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
}

.story-context-body {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 3rem;
}

.section-heading-center {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  margin-bottom: 0.75rem;
  color: #17b75a;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title-combo {
  margin: 0 0 1rem;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section-title-center {
  text-align: center;
}

.section-title-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
}

.section-intro {
  margin: 0;
  color: #525252;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.55;
}

.section-intro-center {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works {
  background: linear-gradient(180deg, #f3f4ec 0%, #f0eee2 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(23, 23, 23, 0.06);
  padding: 1.625rem 1.375rem;
}

.card-step-only {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.card-step {
  color: #17b75a;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.card-title {
  margin: 0;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.card-text {
  margin: 0;
  color: #525252;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.pain-solution {
  background: #fcfcfc;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pain-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.5rem 1.625rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.pain-quote {
  color: #231f1f;
  font-family: var(--font-serif);
  font-size: 1.4375rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pain-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.check-dot {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  border-radius: 999px;
  background: #17b75a;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.85);
}

.testimonials {
  background: linear-gradient(180deg, #f0eee2 0%, #e9f1d5 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 1.375rem;
  border: 1px solid rgba(23, 23, 23, 0.06);
  padding: 1.75rem;
}

.testimonial-card-wide {
  grid-column: span 6;
}

.testimonial-card-small {
  grid-column: span 4;
}

.testimonial-mark {
  color: rgba(23, 183, 90, 0.22);
  font-family: var(--font-serif);
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
  line-height: 0.6;
  letter-spacing: -0.04em;
}

.testimonial-quote {
  margin: 0;
  color: #231f1f;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.015em;
}

.testimonial-card-wide .testimonial-quote {
  font-size: 1.5rem;
}

.testimonial-card-small .testimonial-quote {
  font-size: 1.125rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
}

.tone-green {
  background: #e6efea;
}

.tone-peach {
  background: #fde2c8;
}

.tone-blue {
  background: #dbeafe;
}

.tone-pink {
  background: #fce7f3;
}

.tone-warm {
  background: #fef3c7;
}

.testimonial-author {
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
}

.testimonial-role {
  color: #707070;
  font-family: var(--font-sans);
  font-size: 0.75rem;
}

.pricing {
  background: #fcfcfc;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-toggle {
  display: inline-flex;
  padding: 0.25rem;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.pricing-toggle-btn {
  border: none;
  cursor: pointer;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  background: transparent;
  color: #525252;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-toggle-btn.active {
  background: #17b75a;
  color: #fff;
  box-shadow: 0 4px 10px rgba(23, 183, 90, 0.25);
}

.pricing-card {
  width: min(100%, 28rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1.5rem;
}

.pricing-card-featured {
  background: #231f1f;
  color: #fff;
  box-shadow: 0 24px 48px rgba(23, 183, 90, 0.18);
}

.pricing-plan {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pricing-price {
  font-family: var(--font-sans);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.pricing-period {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

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

.pricing-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #17b75a;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.92);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  height: 3.25rem;
  border-radius: 999px;
  background: #17b75a;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(23, 183, 90, 0.35);
}

.pricing-note {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-align: center;
}

.faq {
  background: #fcfcfc;
}

.faq-container {
  max-width: 55rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: #fff;
  border-radius: 1.125rem;
  border: 1px solid rgba(23, 23, 23, 0.08);
  overflow: hidden;
}

.faq-item.is-open {
  border-color: rgba(23, 183, 90, 0.35);
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #231f1f;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  background: #17b75a;
  color: #fff;
}

.faq-item.is-open .faq-icon::after {
  display: none;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.375rem;
  color: #525252;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.legal-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(23, 183, 90, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffcef 0%, #f3f4ec 34%, #fcfcfc 100%);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.legal-hero .hero-noise {
  opacity: 0.14;
}

.legal-hero-drip {
  position: absolute;
  right: -4rem;
  top: 3rem;
  width: min(17rem, 28vw);
  opacity: 0.24;
  pointer-events: none;
  transform: rotate(168deg) scaleX(-1);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.legal-title {
  margin: 0 0 1rem;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.legal-title-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
}

.legal-intro {
  max-width: 38rem;
  margin: 0;
  color: #525252;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.6;
}

.legal-shell {
  padding: 0 0 6rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-meta {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.legal-meta-card,
.legal-document {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow-card);
}

.legal-meta-card {
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.legal-meta-label {
  margin-bottom: 0.375rem;
  color: #17b75a;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-meta-value {
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
}

.legal-document {
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-document h2 {
  margin: 2.5rem 0 0.875rem;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: #525252;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-document p {
  margin: 0 0 1rem;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.legal-document strong {
  color: #231f1f;
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffcef 0%, #b9e9a9 100%);
  padding: 7.5rem 0;
}

.mission-drip {
  position: absolute;
  pointer-events: none;
}

.mission-drip-left {
  bottom: 3.75rem;
  left: 8%;
  width: min(13.75rem, 22vw);
  opacity: 0.45;
  transform: rotate(-18deg);
}

.mission-drip-right {
  top: 4.375rem;
  right: 6%;
  width: min(17.5rem, 26vw);
  opacity: 0.4;
  transform: rotate(190deg) scaleX(-1);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 47.5rem;
  text-align: center;
}

.final-cta-quote {
  margin: 0 0 1.125rem;
  color: #231f1f;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.final-cta-caption {
  max-width: 32rem;
  margin: 0 auto 2.25rem;
  color: #231f1f;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.55;
}

.final-cta-button {
  background: #231f1f;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  background: #231f1f;
  color: #e6efea;
  padding: 4rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-title {
  margin-bottom: 0.875rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.footer-brand-copy {
  max-width: 18rem;
  margin: 0;
  color: rgba(230, 239, 234, 0.7);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(230, 239, 234, 0.7);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(230, 239, 234, 0.5);
  font-family: var(--font-sans);
  font-size: 0.75rem;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 138, 80, 0.45);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.14);
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .sample-story {
    max-width: 33rem;
  }

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

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card-wide,
  .testimonial-card-small {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 2.5rem, 100%);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .hero-grid {
    gap: 4.25rem;
    padding: 4.5rem 0 5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sample-story {
    margin-top: 0.75rem;
  }

  .story-context {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .testimonial-card-wide,
  .testimonial-card-small {
    grid-column: span 12;
  }

  .final-cta,
  .section {
    padding: 4.75rem 0;
  }

  .legal-hero {
    padding: 4rem 0 2.5rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .brand-text {
    font-size: 1.125rem;
  }

  .lang-current {
    padding: 0.65rem 0.9rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .hero-subtitle,
  .section-intro,
  .final-cta-caption {
    font-size: 1rem;
  }

  .primary-cta,
  .secondary-cta,
  .final-cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .story-card {
    padding: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-title-combo {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .final-cta-quote {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-shell {
    padding-bottom: 4.5rem;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

  .legal-document {
    border-radius: 1.125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
