@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --primary: #68ca67;
  --primary-dark: #40b43f;
  --primary-light: #86d485;
  --ink: #1f2937;
  --muted: #6b7280;
  --bg: #fcfdfb;
  --bg-soft: #f1f6f2;
  --card: #ffffff;
  --line: #e5e7eb;
  --coffee: #6f4e37;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 22px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

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

body {
  font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f7fbf7 0%, #ffffff 45%, #f1f5f2 100%);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding: 6px 2px;
  color: var(--ink);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(64, 180, 63, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(64, 180, 63, 0.35);
}

.btn-ghost {
  border-color: rgba(107, 114, 128, 0.4);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(107, 114, 128, 0.4);
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(104, 202, 103, 0.28) 0%, rgba(104, 202, 103, 0) 70%);
  top: -180px;
  right: -80px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(111, 78, 55, 0.16) 0%, rgba(111, 78, 55, 0) 70%);
  bottom: -160px;
  left: -120px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(104, 202, 103, 0.12);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 18px 0;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 26px;
  flex-wrap: wrap;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: min(520px, 88vw);
  height: auto;
}

.float-card {
  position: absolute;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.float-card strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.float-card.one {
  top: 16%;
  left: -4%;
}

.float-card.two {
  bottom: 16%;
  right: -6%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.section {
  padding: 90px 0;
}

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

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.kicker {
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.6);
  display: grid;
  gap: 12px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(104, 202, 103, 0.15);
  color: var(--primary-dark);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.panel {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.panel img {
  border-radius: var(--radius-md);
}

.pressure-meter {
  display: grid;
  gap: 16px;
}

.meter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.meter {
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(111, 78, 55, 0.12);
  color: var(--coffee);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(111, 78, 55, 0.1);
  font-weight: 600;
  color: var(--coffee);
  font-size: 0.85rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.testimonial {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.testimonial span {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--ink);
}

.cta-band {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
}

.footer {
  padding: 60px 0 40px;
  background: #111827;
  color: #f9fafb;
}

.footer .brand {
  color: #f9fafb;
}

.footer p {
  color: rgba(249, 250, 251, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.footer a {
  color: rgba(249, 250, 251, 0.72);
  display: block;
  margin: 8px 0;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(249, 250, 251, 0.1);
  padding-top: 18px;
  font-size: 0.9rem;
  color: rgba(249, 250, 251, 0.6);
}

.form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid label {
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(104, 202, 103, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.status-message {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  display: none;
}

.status-message.success {
  background: rgba(104, 202, 103, 0.18);
  color: var(--primary-dark);
}

.status-message.error {
  background: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-card {
  background: #ffffff;
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
}

.store-buttons {
  display: grid;
  gap: 12px;
}

.store-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px 18px;
  font-weight: 600;
  background: #f9fafb;
}

.legal-card {
  background: #ffffff;
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-list h4 {
  font-size: 1.1rem;
}

.highlight {
  background: rgba(104, 202, 103, 0.12);
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open .nav {
  max-height: 400px;
  padding: 12px 24px 18px;
}

body.nav-open .nav a {
  padding: 10px 0;
}

@media (max-width: 960px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-cta .btn-primary {
    display: none;
  }

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

@media (max-width: 720px) {
  .hero {
    padding: 80px 0 70px;
  }

  .cta-band {
    padding: 30px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-trust {
    flex-direction: column;
  }
}

body.h5 {
  background: #ffffff;
}

body.h5 .site-header,
body.h5 .footer {
  display: none;
}

body.h5 .section {
  padding: 50px 0;
}

.centered {
  text-align: center;
}

.brand.centered {
  justify-content: center;
}

.mt-18 {
  margin-top: 18px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-20 {
  margin-top: 20px;
}

.section-compact-top {
  padding-top: 0;
}

.footer-note {
  text-align: center;
  color: var(--muted);
}

.contact-details {
  margin-top: 22px;
}

.w-80 { width: 80%; }
.w-72 { width: 72%; }
.w-70 { width: 70%; }
.w-65 { width: 65%; }
.w-55 { width: 55%; }
