:root {
  --bg: #f8f4ef;
  --text: #101820;
  --muted: #5b667a;
  --brand: #0f766e;
  --brand-2: #0d9488;
  --accent: #f97316;
  --card: rgba(255, 255, 255, 0.9);
  --border: rgba(16, 24, 32, 0.12);
  --shadow: 0 16px 40px rgba(16, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(900px 500px at 10% -20%, rgba(15, 118, 110, 0.22), transparent 60%),
              radial-gradient(700px 420px at 90% 20%, rgba(249, 115, 22, 0.18), transparent 55%),
              linear-gradient(160deg, #fff7ef 0%, #eef5f2 100%);
  min-height: 100vh;
}

.bg-orbs span {
  position: fixed;
  border-radius: 999px;
  filter: blur(0px);
  z-index: 0;
}

.bg-orbs span:nth-child(1) {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(15, 118, 110, 0.25), transparent 65%);
}

.bg-orbs span:nth-child(2) {
  width: 520px;
  height: 520px;
  right: -220px;
  top: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(249, 115, 22, 0.22), transparent 65%);
}

.bg-orbs span:nth-child(3) {
  width: 380px;
  height: 380px;
  left: 30%;
  bottom: -180px;
  background: radial-gradient(circle at 40% 40%, rgba(15, 118, 110, 0.18), transparent 70%);
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 8vw 12px;
}

.nav__brand img {
  height: 42px;
}

.nav__links {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.nav__links a {
  text-decoration: none;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn--primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.2);
}

.btn--outline {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  padding: 40px 8vw 30px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__meta {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.hero__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card__top {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand);
}

.pill--muted {
  background: rgba(249, 115, 22, 0.12);
  color: #9a4c0b;
}

.stat {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(16, 24, 32, 0.1);
}

.stat:last-child {
  border-bottom: none;
}

.stat__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat__value {
  font-size: 16px;
  font-weight: 600;
}

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.stripe {
  margin: 40px 0;
}

.stripe div {
  height: 2px;
  width: 80vw;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 118, 110, 0.4) 30%, rgba(249, 115, 22, 0.4) 70%, transparent 100%);
}

.grid {
  padding: 20px 8vw 40px;
  position: relative;
  z-index: 1;
}

.grid__title h2 {
  margin: 0;
  font-size: 32px;
}

.grid__title p {
  color: var(--muted);
}

.grid__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.grid__cards article {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 16px rgba(16, 24, 32, 0.08);
}

.pricing {
  padding: 40px 8vw 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.pricing__card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0;
}

.price__amount {
  font-size: 48px;
  font-weight: 700;
}

.price__term {
  color: var(--muted);
}

.pricing__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: var(--muted);
}

.pricing__card li {
  padding: 6px 0;
}

.pricing__notes {
  padding: 20px;
  border-left: 2px solid var(--brand);
}

.badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
}

.faq {
  padding: 20px 8vw 50px;
  position: relative;
  z-index: 1;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.footer {
  padding: 30px 8vw 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  border-top: 1px solid rgba(16, 24, 32, 0.1);
  position: relative;
  z-index: 1;
}

.footer img {
  height: 32px;
}

.footer a {
  color: var(--brand);
  text-decoration: none;
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }
  .hero__meta {
    flex-direction: column;
    gap: 6px;
  }
  .pricing__notes {
    border-left: none;
    border-top: 2px solid var(--brand);
  }
}
