:root {
  --green: #078b2f;
  --green-dark: #046522;
  --orange: #ff7a00;
  --red-orange: #ff3b12;
  --yellow: #ffb000;
  --ink: #121313;
  --muted: #59615c;
  --cream: #fff8ee;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 176, 0, .18), transparent 28%),
    radial-gradient(circle at 86% 15%, rgba(7, 139, 47, .18), transparent 25%),
    linear-gradient(135deg, #fff9ef 0%, #fff 42%, #f0fff5 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.no-select, .no-select * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img { max-width: 100%; pointer-events: none; }
a { color: inherit; text-decoration: none; }

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 0 28px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 122, 0, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 3vw, 32px); color: var(--muted); font-weight: 700; font-size: 14px; }
.nav-links a:hover { color: var(--green); }
.lang-switch { display: flex; background: #f3f3f3; border-radius: 999px; padding: 4px; }
.lang-switch button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  cursor: pointer;
  color: var(--muted);
}
.lang-switch button.active { background: var(--green); color: #fff; }

.section-pad { padding: clamp(36px, 7vw, 92px) 0; }
.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.eyebrow { color: var(--orange); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; margin: 0 0 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 86px); line-height: .95; letter-spacing: -0.07em; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 54px); line-height: 1; letter-spacing: -0.05em; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.hero-text, .panel p, .waitlist-card p, .card p { color: var(--muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.65; }
.hero-text { max-width: 680px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green), var(--orange)); box-shadow: 0 14px 30px rgba(255, 122, 0, .28); }
.btn-secondary { color: var(--green-dark); background: #fff; border: 1px solid rgba(7, 139, 47, .18); }
.full { width: 100%; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.hero-visual { position: relative; isolation: isolate; }
.delivery-art { width: min(100%, 600px); filter: drop-shadow(0 28px 45px rgba(0,0,0,.22)); transform: rotate(1deg); }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -1; }
.orb-one { width: 330px; height: 330px; right: 4%; top: 4%; background: rgba(255,122,0,.18); }
.orb-two { width: 240px; height: 240px; left: 0; bottom: 8%; background: rgba(7,139,47,.18); }

.section-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.cards { display: grid; gap: 20px; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .panel, .waitlist-card, .metrics div {
  border: 1px solid rgba(255, 122, 0, .14);
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.card { padding: 30px; }
.icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, rgba(7,139,47,.12), rgba(255,122,0,.14)); font-size: 30px; margin-bottom: 20px; }

.split-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: stretch; }
.panel { padding: clamp(28px, 5vw, 56px); }
.metrics { display: grid; gap: 18px; }
.metrics div { padding: 28px; }
.metrics strong { display: block; color: var(--green); font-size: 42px; line-height: 1; }
.metrics span { color: var(--muted); font-weight: 800; }

.waitlist-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 5vw, 54px); padding: clamp(26px, 5vw, 56px); background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,248,238,.82)); }
.waitlist-form { display: grid; gap: 14px; }
.waitlist-form label { display: grid; gap: 8px; font-weight: 900; color: var(--ink); }
.waitlist-form input, .waitlist-form select {
  min-height: 52px;
  border: 1px solid rgba(18,19,19,.12);
  border-radius: 16px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  user-select: auto;
}
.hidden { display: none; }

.footer { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 36px 0 50px; color: var(--muted); font-weight: 700; text-align: center; }
.footer img { width: 42px; }

.reveal { opacity: 0; transform: translateY(22px); animation: reveal .75s ease forwards; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .32s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .nav { border-radius: 24px; align-items: flex-start; }
  .nav-links { display: none; }
  .hero, .split-section, .waitlist-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { order: -1; text-align: center; }
  .three-col { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-shell { width: min(100% - 20px, 1180px); }
  .brand span { display: none; }
  .brand img { width: 48px; height: 48px; }
  .nav { top: 10px; margin-top: 10px; }
  .hero-actions .btn { width: 100%; }
  h1 { font-size: clamp(38px, 12vw, 54px); }
}
