:root {
  --ink: #17211d;
  --muted: #5d6963;
  --paper: #fbfaf4;
  --white: #ffffff;
  --green: #147a4d;
  --green-dark: #0d4f36;
  --marigold: #f3b33d;
  --tomato: #d9533f;
  --line: #d9ded4;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(11, 21, 16, 0.46);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.nav-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--marigold);
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.site-nav a:hover,
.nav-action:hover {
  color: var(--white);
}

.nav-action {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 72px) 86px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.86) 0%, rgba(7, 18, 13, 0.62) 46%, rgba(7, 18, 13, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 18, 13, 0.78) 0%, rgba(7, 18, 13, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--marigold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.pincode-search,
.join-form {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
}

.pincode-search label,
.join-form label {
  font-weight: 800;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: 100%;
}

input {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  outline: none;
}

input:focus {
  border-color: var(--marigold);
  box-shadow: 0 0 0 4px rgba(243, 179, 61, 0.22);
}

button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--marigold);
  font-weight: 900;
  cursor: pointer;
}

button:hover {
  background: #ffc653;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 28px clamp(18px, 3vw, 42px);
  background: var(--white);
}

.stats-band strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.stats-band span,
.section p,
.slot-table {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.section-copy {
  max-width: 650px;
}

.section-copy p:not(.eyebrow),
.panel p {
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.08);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 1.3rem;
}

.shop-section {
  color: var(--white);
  background: #1f372d;
}

.shop-section .section-copy p:not(.eyebrow),
.shop-section .workflow p {
  color: rgba(255, 255, 255, 0.74);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
}

.workflow div {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.workflow span {
  display: block;
  margin-bottom: 40px;
  color: var(--marigold);
  font-weight: 900;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: #f3efe3;
}

.panel {
  max-width: 730px;
}

.slot-table {
  overflow: hidden;
  border: 1px solid #cfc7b5;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.slot-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1fr;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.slot-table > div:first-child {
  border-top: 0;
}

.slot-table .slot-head {
  color: var(--white);
  background: var(--tomato);
  font-weight: 900;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  background: var(--green-dark);
}

.cta-section h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.join-form {
  flex: 0 1 500px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #101713;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .stats-band,
  .split,
  .feature-grid,
  .workflow,
  .payment-section {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .workflow div {
    min-height: auto;
  }

  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(3.5rem, 22vw, 6rem);
  }

  .search-row,
  .slot-table > div {
    grid-template-columns: 1fr;
  }

  button,
  input {
    width: 100%;
  }
}
