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

:root {
  --bg: #f0f9f1;
  --bg-deep: #e8f4ea;
  --surface: #ffffff;
  --surface2: #fafdf8;
  --border: rgba(0, 0, 0, 0.12);
  --text: #000000;
  --muted: #000000;
  --hint: #000000;
  --green: #239449;
  --green-light: #4dc87a;
  --gold: #000000;
  --gold-light: #000000;
  --max: 1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.78) 100%),
    url('../images/tab-background.png') center / cover no-repeat,
    #f8fcf9;
}

a {
  color: #000000;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: #000000;
  text-decoration-thickness: 2px;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Brand logo */
.logo-dvv {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(35, 148, 73, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-kicker {
  font-family: 'Nunito', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #000000;
}

.logo-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-veggie,
.logo-vibes {
  color: #000000;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.nav-main a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-main a:hover {
  color: #000000;
  text-decoration: underline;
}

.nav-all-apps {
  color: #000000 !important;
  font-weight: 500 !important;
}

.nav-cta {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), #1a7a3c);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(35, 148, 73, 0.28);
}

.nav-cta:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

/* Hero */
.hero {
  padding: 3rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 820px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.94);
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #000000;
}

.hero h1 .brand-veggie,
.hero h1 .brand-vibes {
  color: #000000;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.store-badge {
  display: inline-block;
  height: 44px;
}

.store-badge img {
  height: 100%;
  width: auto;
  display: block;
}

.hero-icon-wrap {
  display: flex;
  justify-content: center;
}

.hero-icon-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(35, 148, 73, 0.12);
}

.hero-icon-card img {
  width: min(280px, 72vw);
  height: auto;
  border-radius: 22%;
  display: block;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  display: block;
  color: #000000;
}

.hero-stat span {
  font-size: 0.78rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Sections */
section.page-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0.65rem;
}

section.page-section h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #000000;
}

.section-intro {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(35, 148, 73, 0.28);
  box-shadow: 0 8px 28px rgba(35, 148, 73, 0.08);
}

.feature-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000000;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

/* Inner / legal */
main.inner { flex: 1; padding: 2.5rem 0 4rem; }

.inner h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #000000;
}

.inner .meta {
  color: var(--hint);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.inner h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.12rem;
  margin: 2rem 0 0.75rem;
  color: #000000;
}

.inner h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  color: #000000;
}

.inner p, .inner ul {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.inner ul { padding-left: 1.25rem; }
.inner li { margin-bottom: 0.35rem; }

.support-box {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.support-box h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.92);
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #000000;
  text-decoration: underline;
}

.footer-copy a {
  color: #000000;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--hint);
}

@media (max-width: 640px) {
  .nav-main { width: 100%; justify-content: center; }
  .site-header .wrap { justify-content: center; }
}
