body { background: #f9fafb; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, #1b5e20 100%);
  color: #fff;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.hero .tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 14px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
}

.hero h2 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  opacity: .85;
  margin-bottom: 1.5rem;
}

.hero-companies {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-companies span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 4px 14px;
  font-size: .85rem;
}

/* SECTIONS */
section { padding: 3rem 0; }
section + section { border-top: 1px solid #e5e7eb; }

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .4rem;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .95rem;
}

/* CONTEXT */
.context-text { font-size: 1rem; color: var(--text); max-width: 720px; }
.context-text p + p { margin-top: 1rem; }

/* PROSE */
.prose { max-width: 720px; }
.prose p { font-size: 1rem; color: var(--text); line-height: 1.75; }
.prose p + p { margin-top: 1rem; }

/* MISSION BOX */
.mission-banner {
  background: var(--green-bg);
  border-left: 4px solid var(--green);
  margin: 2.5rem auto;
  margin-left: 0;
  max-width: 760px;
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.5rem;
}

.mission-banner .label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .4rem;
}

.mission-banner p {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
}

/* CARDS GRID */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--green-bg);
}

.card-title { font-weight: 700; font-size: 1rem; color: var(--text); }

/* PROJECT LIST */
.project-list { list-style: none; }

.project-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .92rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.project-list li:last-child { border-bottom: none; }

.project-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.no-check::before { content: '' !important; }

.cross { color: #e53935; font-weight: 700; flex-shrink: 0; }

/* GOLD RULE */
.gold-rule {
  background: #fffde7;
  border: 1px solid #f9a825;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: .92rem;
  color: #5d4037;
  margin-top: 1.5rem;
}

.gold-rule strong { color: #e65100; }

/* FORM */
.form-card {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-intro {
  background: var(--green-bg);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
}

.form-intro strong { color: var(--green); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }

label { font-size: .85rem; font-weight: 600; color: var(--text); }
label .req { color: #e53935; margin-left: 2px; }
label .hint { font-weight: 400; margin-left: 5px; color: var(--text-muted); font-size: .8rem; }

input, select, textarea {
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,.12);
}

textarea { resize: vertical; min-height: 100px; }
select { cursor: pointer; }

.field-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  margin-right: 6px;
  flex-shrink: 0;
}

.btn-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 1rem;
  font-family: inherit;
}

.btn-submit:hover { background: var(--green-light); }
.btn-submit:active { transform: scale(.99); }
.btn-submit:disabled { background: #9e9e9e; cursor: not-allowed; }

.form-status {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: 7px;
  font-size: .9rem;
  display: none;
}

.form-status.error {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #b71c1c;
  display: block;
}

/* SUCCESS SCREEN */
.success-screen {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.success-screen .icon { font-size: 3rem; margin-bottom: 1rem; }

.success-screen h3 {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: .5rem;
}

.success-screen p { color: var(--text-muted); margin-bottom: 1.5rem; }

.btn-another {
  background: none;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}

.btn-another:hover { background: var(--green-bg); }
