:root {
  --offwhite: #f9f9f7;
  --cream: #fbf2ec;
  --dark: #0d3326;
  --accent: #6edd62;
  --green: #a9eba2;
  --text: #1d1d1d;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  min-height: 100vh;
}

.hero {
  min-height: 74vh;
  padding: 28px;
  background: var(--dark);
  color: var(--white);
}

.nav {
  width: min(1120px, 100%);
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  width: 112px;
  height: auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nequi-mark {
  display: grid;
  place-items: center;
  min-width: 118px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  padding: 8px 12px;
}

.nequi-mark img {
  width: 95px;
  height: auto;
  display: block;
}

.lockup-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.24);
}

.nav-pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.hero-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.55;
}

.form-card {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.field {
  margin: 0 0 18px;
  border: 0;
  padding: 0;
}

label,
legend {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
}

input[type="email"],
input[type="url"],
input[type="file"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--text);
  font: inherit;
  background: var(--white);
}

input:focus {
  outline: 3px solid rgba(110, 221, 98, 0.28);
  border-color: var(--accent);
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.segmented label {
  margin: 0;
}

.segmented input {
  position: absolute;
  opacity: 0;
}

.segmented span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.segmented input:checked + span {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.submit:hover {
  background: var(--green);
}

.submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.status.ok {
  color: #0d6843;
  font-weight: 700;
}

.status.error {
  color: #a11d1d;
  font-weight: 700;
}

.hidden {
  display: none;
}

.notes {
  width: min(1120px, calc(100% - 40px));
  margin: 44px auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.notes article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}

.notes span {
  color: var(--dark);
  font-size: 38px;
  font-weight: 900;
  opacity: 0.18;
}

.notes h2 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .hero {
    padding: 20px;
  }

  .nav {
    margin-bottom: 36px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .nequi-mark {
    min-width: 104px;
  }

  .nequi-mark img {
    width: 84px;
  }

  .logo {
    width: 92px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h1 {
    font-size: 46px;
  }

  .lede {
    font-size: 17px;
  }

  .notes {
    grid-template-columns: 1fr;
  }
}
