:root {
  --forest: #0a392b;
  --forest-deep: #06271e;
  --leaf: #197333;
  --leaf-bright: #71ae44;
  --harvest: #f9b915;
  --cream: #f5f2e7;
  --paper: #fffdf7;
  --ink: #173127;
  --muted: #587066;
  --line: rgba(14, 72, 49, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans Devanagari", "DM Sans", sans-serif;
  overflow-x: hidden;
}

button, input { font: inherit; }

.field-lines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(ellipse at 5% 40%, transparent 0 17%, rgba(17, 100, 57, .08) 17.2% 17.6%, transparent 17.8% 25%, rgba(17, 100, 57, .05) 25.2% 25.6%, transparent 25.8%),
    radial-gradient(ellipse at 96% 70%, transparent 0 22%, rgba(249, 185, 21, .10) 22.2% 22.6%, transparent 22.8% 31%, rgba(249, 185, 21, .06) 31.2% 31.6%, transparent 31.8%);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 220px;
  height: auto;
}

.language-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
}

.lang-button {
  min-width: 82px;
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.lang-button:hover { transform: translateY(-1px); }
.lang-button.active { color: white; background: var(--forest); }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 660px;
  padding: 76px 0 82px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(42px, 7vw, 98px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--leaf);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--harvest);
  box-shadow: 0 0 0 0 rgba(249, 185, 21, .55);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  70% { box-shadow: 0 0 0 9px rgba(249, 185, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 185, 21, 0); }
}

h1 {
  max-width: 720px;
  margin: 25px 0 25px;
  color: var(--forest-deep);
  font-size: clamp(3.2rem, 6vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 em {
  color: var(--leaf);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 0;
  bottom: -.04em;
  height: .11em;
  border-radius: 999px;
  background: var(--harvest);
  transform: rotate(-1.2deg);
}

.hero-intro {
  max-width: 635px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.85;
}

.launch-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.pulse-mark {
  width: 80px;
  display: flex;
  align-items: center;
}

.pulse-mark span { height: 2px; flex: 1; background: var(--leaf); }
.pulse-mark i {
  width: 24px;
  height: 24px;
  margin: 0 -2px;
  border: solid var(--harvest);
  border-width: 3px 3px 0 0;
  transform: rotate(-45deg) skew(8deg, 8deg);
}

.launch-label {
  margin: 0;
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 800;
}

.launch-url { margin: 2px 0 0; color: var(--muted); font-size: .9rem; }

.signal-panel {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  color: white;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 45%),
    var(--forest);
  box-shadow: 0 34px 80px rgba(6, 39, 30, .22);
}

.signal-panel::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  top: -190px;
  right: -80px;
  border: 1px solid rgba(249, 185, 21, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(249, 185, 21, .035), 0 0 0 70px rgba(249, 185, 21, .025);
}

.panel-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #ffe08a;
  font: 700 .67rem/1 "DM Sans", sans-serif;
  letter-spacing: .1em;
}

.status-pill b { width: 6px; height: 6px; border-radius: 50%; background: var(--harvest); }

.signal-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(5px);
  transition: transform .25s ease, background .25s ease;
}

.signal-card:hover { transform: translateX(-4px); background: rgba(255, 255, 255, .12); }

.signal-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--forest-deep);
  background: var(--harvest);
  font: 800 1.45rem/1 "DM Sans", sans-serif;
}

.market-card .signal-icon { color: white; background: #27864b; }
.crop-card .signal-icon { color: var(--forest); background: #d9ecb8; }
.leaf-icon { font-size: .75rem; box-shadow: inset -11px -11px 0 rgba(55, 132, 62, .32); transform: rotate(-18deg); border-radius: 6px 28px 6px 28px; }

.category { color: #b6d8c6; font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.signal-content h2 { margin: 3px 0 2px; color: white; font-size: 1.03rem; line-height: 1.45; }
.signal-content p { margin: 0; color: rgba(255,255,255,.62); font-size: .79rem; line-height: 1.6; }
.signal-arrow { color: rgba(255,255,255,.55); font: 400 1.1rem/1 "DM Sans", sans-serif; }
.panel-foot { padding: 22px 0 0; text-align: center; color: rgba(255,255,255,.48); font-size: .75rem; letter-spacing: .04em; }

.promise {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 64px;
  padding: 66px;
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(35, 69, 53, .08);
}

.promise-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.section-number, .promise-grid article > span {
  color: var(--leaf);
  font: 700 .8rem/1.4 "DM Sans", sans-serif;
}

.section-number { padding-top: 9px; }
.overline { margin: 0 0 10px; color: var(--harvest); font-size: .8rem; font-weight: 800; letter-spacing: .08em; }
.promise-heading h2 { margin: 0; color: var(--forest-deep); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.2; letter-spacing: -.035em; }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
}

.promise-grid article { min-height: 190px; padding: 6px 34px 0; background: var(--paper); }
.promise-grid article:first-child { padding-left: 0; }
.promise-grid article:last-child { padding-right: 0; }
.promise-grid h3 { margin: 25px 0 10px; color: var(--forest); font-size: 1.45rem; }
.promise-grid p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.8; }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
}

footer p { margin: 0; color: var(--forest); font-weight: 700; }

[hidden] { display: none !important; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 58px; }
  .hero-copy { max-width: 690px; }
  .signal-panel { max-width: 620px; width: 100%; justify-self: center; }
  .promise { padding: 48px 38px; }
}

@media (max-width: 640px) {
  .site-header, .hero, .promise, footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 84px; }
  .brand img { width: 170px; }
  .language-switch { padding: 3px; }
  .lang-button { min-width: auto; min-height: 36px; padding: 7px 11px; font-size: .78rem; }
  .hero { padding: 50px 0 58px; gap: 48px; }
  h1 { margin-top: 20px; font-size: clamp(2.72rem, 13vw, 4.1rem); }
  h1 em { white-space: normal; }
  .hero-intro { line-height: 1.75; }
  .signal-panel { padding: 18px; border-radius: 26px; }
  .signal-card { grid-template-columns: 46px 1fr auto; padding: 15px; }
  .signal-icon { width: 46px; height: 46px; border-radius: 14px; }
  .promise { margin-bottom: 32px; padding: 34px 24px; border-radius: 26px; }
  .promise-heading { grid-template-columns: 1fr; gap: 12px; padding-bottom: 34px; }
  .section-number { padding-top: 0; }
  .promise-grid { grid-template-columns: 1fr; gap: 0; margin-top: 16px; background: transparent; }
  .promise-grid article, .promise-grid article:first-child, .promise-grid article:last-child { min-height: 0; padding: 26px 0; border-bottom: 1px solid var(--line); }
  .promise-grid article:last-child { border-bottom: 0; }
  .promise-grid h3 { margin: 12px 0 6px; }
  footer { min-height: 132px; padding: 24px 0; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
