:root {
  --bg: #CFFFEF;
  --bg-alt: #f7fbfa;
  --bg-join: #B6F8D1;
  --text: #10211f;
  --muted: #607472;

  --accent: #31CD85;        /* mid green */
  --accent-soft: #B6F8D1;   /* light green */
  --accent-strong: #0FB766; /* dark green */

  --coral: #FF6E70;

  --border: #d7e5e2;
  --card-bg: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(15, 118, 110, 0.12);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.08);
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #c7f2e9, #e6f6f2 35%, #f9f9fb 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1080px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 72px 0;
  background: #f7fbfa; /* slightly warm neutral */
}

.section-alt {
  background: var(--bg-alt);
}


/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(230, 246, 242, 0.9);
  border-bottom: 1px solid rgba(215, 229, 226, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav a:hover {
  color: var(--coral);
  background: rgba(255, 110, 112, 0.08);
}

.nav-cta {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 110, 112, 0.4);
  color: var(--coral);
}

.nav-cta:hover {
  background: rgba(255, 110, 112, 0.08);
}

/* Hero */

.hero {
  padding: 72px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.3rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-title-small {
  font-size: 0.48em;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* Soft secondary hero line */
.hero-kicker {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-top: 8px;
}

.hero-kicker::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  opacity: .9;
  background: var(--coral);
  border-radius: 999px;
  margin-top: 12px;
}

.hero-copy h1 {
  /* kept for fallback, hero-title overrides specifics */
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #6c8682; /* instead of #607472 */
  color: var(--muted);
  max-width: 480px;
  margin-top: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-footnote {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/* Buttons */

.nav a:hover,
.footer-links a:hover,
.join-note a:hover {
  color: var(--coral);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background-color: var(--coral);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(255, 110, 112, 0.28);
}

.btn-primary:hover {
  background-color: #ff5b5e;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 110, 112, 0.45);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(15, 118, 110, 0.25);
  color: var(--accent-strong);
}

.btn-ghost:hover {
  background: rgba(220, 244, 240, 0.9);
}

/* Hero card */

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(215, 229, 226, 0.9);
}

.hero-card-header {
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.pill-green {
  background: rgba(49, 205, 133, 0.12);
  color: var(--accent-strong);
}

.pill-preview {
  background: rgba(49, 205, 133, 0.12); /* soft mid-green wash */
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
}

.pill-coral {
  background: rgba(255, 110, 112, 0.12);
  color: var(--coral);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 110, 112, 0.22);
  box-shadow: 0 2px 6px rgba(255, 110, 112, 0.12);
}

.pill-outline {
  border: 1px dashed rgba(96, 116, 114, 0.4);
  color: var(--muted);
  background: rgba(248, 250, 249, 0.9);
}

.hero-card-body {
  padding: 10px 0 8px;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-label {
  font-size: 12px;
  color: var(--muted);
}

.hero-value {
  font-size: 13px;
}

.hero-card-footer {
  margin-top: 8px;
}

/* Sections */

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.section-header p {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(215, 229, 226, 0.85);
}

.feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.step {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  border: 1px solid rgba(215, 229, 226, 0.85);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, 0.4);
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--accent-strong);
}

.step h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
  border: 1px solid rgba(215, 229, 226, 0.85);
}

.pricing-card-highlight {
  border-color: rgba(20, 184, 166, 0.6);
  box-shadow: var(--shadow-card);
}

.pricing-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.price {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--muted);
}

.badge-soon {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  background: rgba(251, 107, 107, 0.1);
  color: var(--coral);
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

details {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 229, 226, 0.9);
  padding: 10px 12px;
}

summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

details p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* Join */

.join-section {
  background: var(--bg-join);
}

.join-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.join-copy h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.join-copy p {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
}

.join-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.join-form input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 14px;
}

.join-form input:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.4);
}

.join-note {
  font-size: 13px;
  color: var(--muted);
}

.join-note a {
  color: var(--accent-strong);
  text-decoration: none;
}

/* Footer */

.site-footer {
  padding: 18px 0;
  border-top: 1px solid rgba(215, 229, 226, 0.9);
  background: rgba(246, 251, 250, 0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 10px;
}

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

/* Utilities */

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.hero-logo {
  width: 56px;
  height: 56px;
  margin-top: -6px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px rgba(255, 110, 112, 0.25));
}

/* Base cards: mostly white with a hint of mint */
.feature-card,
.step,
.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(49, 205, 133, 0.28); /* mid green border */
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  padding: 16px 16px 18px;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

/* Hover: slightly stronger green, very soft lift */
.feature-card:hover,
.step:hover,
.pricing-card:hover {
  border-color: rgba(49, 205, 133, 0.55); /* stronger mid green */
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.12);
  transform: translateY(-2px);
}

.feature-card p,
.step p,
.pricing-card ul {
  color: var(--muted);
}

/* Responsive */

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .nav {
    display: none;
  }

  .site-header {
    border-bottom: none;
  }

  .hero {
    padding-top: 40px;
  }
}