:root {
  --color-gray-50: #f3f8f2;
  --color-gray-100: #edf3ec;
  --color-gray-200: #dce6da;
  --color-gray-300: #c8d7c4;
  --color-gray-400: #95ad90;
  --color-gray-500: #5f7a5b;
  --color-gray-600: #36433a;
  --color-gray-700: #253227;
  --color-gray-800: #18231a;
  --color-gray-900: #111811;
  --color-primary-500: #3b5937;
  --color-primary-600: #355033;
  --color-primary-700: #2d442a;
  --color-accent-gradient: linear-gradient(135deg, #3b5937 0%, #2d442a 100%);
  --max-width: 1100px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(116, 156, 103, 0.42) 0%, rgba(59, 89, 55, 0.24) 18%, rgba(17, 24, 17, 0) 52%),
    radial-gradient(circle at 18% 82%, rgba(74, 108, 67, 0.34) 0%, rgba(45, 68, 42, 0.16) 24%, rgba(17, 24, 17, 0) 50%),
    radial-gradient(circle at 82% 18%, rgba(181, 154, 92, 0.18) 0%, rgba(17, 24, 17, 0) 28%),
    radial-gradient(circle at center, rgba(17, 24, 17, 0) 52%, rgba(10, 14, 10, 0.34) 100%),
    var(--color-gray-900);
  color: var(--color-gray-300);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
}

p {
  color: var(--color-gray-400);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.morph-container {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.morph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: morph 20s ease-in-out infinite;
  will-change: transform, border-radius;
}

.morph-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-500) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation-duration: 25s;
}

.morph-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary-700) 0%, transparent 70%);
  bottom: -15%;
  left: -15%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.morph-blob-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-primary-600) 0%, transparent 70%);
  top: 40%;
  left: 45%;
  animation-duration: 35s;
  animation-delay: -10s;
}

@keyframes morph {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  25% {
    transform: translate(50px, -30px) scale(1.1) rotate(90deg);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  }
  50% {
    transform: translate(-30px, 50px) scale(0.9) rotate(180deg);
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
  }
  75% {
    transform: translate(40px, 40px) scale(1.05) rotate(270deg);
    border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  }
}

.site-header {
  padding: 2rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-gray-400);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
  text-decoration: none;
  transition: var(--transition);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .cta-link {
  background: var(--color-primary-500);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
}

.site-nav .cta-link:hover {
  background: var(--color-primary-600);
  transform: translateY(-1px);
}

.hero {
  padding: 14rem 0 7rem;
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--color-gray-400);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1.02;
  max-width: none;
}

.hero-highlight {
  display: block;
  margin-top: 0.15em;
  font-size: 1.08em;
  background-image: linear-gradient(120deg, #f4e7a1 0%, #c9efd1 24%, #93d8db 48%, #c8d3ff 72%, #f3c8cc 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-highlight-shift 9s ease-in-out infinite;
}

@keyframes hero-highlight-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--color-gray-400);
  line-height: 1.45;
  max-width: 700px;
  margin: 0 auto;
}

.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin: 2rem auto 2.5rem;
  max-width: 820px;
  text-align: left;
}

.trust-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-gray-300);
}

.trust-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary-500);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button,
.secondary-button,
.pricing-cta {
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-button,
.pricing-cta {
  background: var(--color-primary-500);
  color: #fff;
  padding: 1rem 1.5rem;
}

.cta-button:hover,
.pricing-cta:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
}

.secondary-button {
  background: rgba(59, 89, 55, 0.06);
  border: 1px solid rgba(59, 89, 55, 0.18);
  color: var(--color-gray-300);
  padding: 1rem 1.5rem;
}

.secondary-button:hover {
  background: rgba(59, 89, 55, 0.1);
  border-color: rgba(59, 89, 55, 0.28);
  transform: translateY(-2px);
}

.hero-footnote {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-gray-500);
}

@media (prefers-reduced-motion: reduce) {
  .hero-highlight {
    animation: none;
    background-position: 50% 50%;
  }
}

.grid-card {
  background: rgba(59, 89, 55, 0.05);
  border: 1px solid rgba(59, 89, 55, 0.14);
  border-radius: 8px;
  transition: var(--transition);
}

.grid-card:hover {
  background: rgba(59, 89, 55, 0.08);
  border-color: rgba(59, 89, 55, 0.22);
}

.panel-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}

.panel-points {
  display: grid;
  gap: 1.1rem;
}

.panel-points strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}

.panel-points span {
  color: var(--color-gray-400);
}

section {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0 auto;
}

.features-section {
  background: rgba(59, 89, 55, 0.03);
  border-top: 1px solid rgba(59, 89, 55, 0.1);
  border-bottom: 1px solid rgba(59, 89, 55, 0.1);
}

.switch-section {
  padding: 2.2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.switch-section-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.switch-section h3 {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.switch-section p {
  margin-bottom: 0;
}

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

.feature-card {
  padding: 2.2rem;
}

.card-line {
  width: 40px;
  height: 2px;
  background: var(--color-primary-500);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: rgba(59, 89, 55, 0.05);
  border: 1px solid rgba(59, 89, 55, 0.1);
  border-radius: 8px;
  padding: 3rem 2.2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  background: rgba(59, 89, 55, 0.08);
  border-color: rgba(59, 89, 55, 0.2);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border: 2px solid var(--color-primary-500);
  background: rgba(59, 89, 55, 0.08);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary-500);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.price-row {
  margin-bottom: 1rem;
}

.price-primary {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}

.price-primary span {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  font-weight: 500;
  margin-left: 0.3rem;
}

.price-secondary {
  font-size: 1.05rem;
  color: var(--color-gray-400);
  margin-top: 0.55rem;
}

.pricing-perk {
  color: var(--color-gray-300);
  background: rgba(59, 89, 55, 0.08);
  border: 1px solid rgba(59, 89, 55, 0.16);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.pricing-description {
  font-size: 1rem;
  color: var(--color-gray-400);
  margin-bottom: 1.75rem;
  min-height: 3.2rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.feature-check {
  color: var(--color-primary-500);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text {
  color: var(--color-gray-300);
  font-size: 0.96rem;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  padding: 1rem;
}

.pricing-cta-featured {
  background: #fff;
  color: var(--color-primary-500);
}

.pricing-cta-featured:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

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

.faq-item {
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(59, 89, 55, 0.12);
  background: rgba(59, 89, 55, 0.04);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.cta-section {
  padding-top: 2rem;
  padding-bottom: 7rem;
}

.cta-box {
  text-align: center;
  padding: 3rem 2rem;
}

.cta-box h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-button-compact {
  padding: 0.95rem 2.25rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(59, 89, 55, 0.12);
  background: rgba(10, 15, 10, 0.45);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-gray-500);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .pricing-grid,
  .feature-grid,
  .switch-section-copy,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding: 10rem 0 5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  section {
    padding: 5rem 0;
  }

  .pricing-card,
  .feature-card,
  .faq-item,
  .switch-section,
  .cta-box {
    padding: 1.6rem;
  }

  .price-primary {
    font-size: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .morph-blob {
    display: none;
  }
}
