/* ============================================================
   DESIGN TOKENS — wire-v2 palette
============================================================ */
:root {
  --teal:        #2AA8A5;
  --teal-dark:   #1f807e;
  --mint:        #DFF4F2;
  --mint-dark:   #c2e9e6;
  --ink:         #5B5B5B;
  --ink-dark:    #3a3a3a;
  --white:       #ffffff;
  --line:        #cde8e6;
  --font-head:   'Anton', sans-serif;
  --font-body:   'Open Sans', Arial, sans-serif;
  --radius:      14px;
  --shadow:      0 4px 18px rgba(42,168,165,0.10);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--mint);
  color: var(--ink);
  line-height: 1.6;
}

a { color: var(--teal-dark); }
a:hover { text-decoration: underline; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--teal);
  display: flex;
  grid-template-columns: 1fr 1fr;
  max-height: 48vh;
  min-height: 32vh;
  overflow: hidden;
}

.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem 3rem 3rem;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}

.hero-text h1 span {
  display: block;
  color: var(--mint-dark);
}

.hero-image {
  max-height: 52vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  max-width: 80vh;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.92;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f807e 0%, #2AA8A5 50%, #45c9c6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 40vw; }
  .hero-text { padding: 2rem 1.5rem; }
}

/* ============================================================
   MAIN CONTENT WRAPPER
============================================================ */
.page-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  display: grid;
  gap: 2rem;
}

/* ============================================================
   SECTION CARDS
============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow);
}

.card h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--mint);
  line-height: 1.1;
}

.card p {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.card p:last-child { margin-bottom: 0; }

/* ============================================================
   WHY SECTION — two-column layout
============================================================ */
.card.why-card {
  background: var(--white);
  border-color: var(--line);
  padding: 0;
  overflow: hidden;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
}

.why-inner h2 {
  color: var(--teal);
  border-bottom: none;
  padding: 2rem 1.75rem;
  margin-bottom: 0;
  font-size: 3.6rem;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.why-body {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-left: 1.5px solid var(--line);
}

.why-body p {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.why-body p:last-child { margin-bottom: 0; }

@media (max-width: 650px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-inner h2 { padding: 1.25rem 1.5rem; }
  .why-body { padding: 1.25rem 1.5rem; border-left: none; border-top: 1.5px solid var(--line); }
}

/* ============================================================
   SPONSOR LEVELS GRID
============================================================ */
.levels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

.level-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: 0 2px 8px rgba(42,168,165,0.08);
  background: var(--mint);
}

.level-card-header {
  background: var(--teal);
  padding: 0.7rem 1rem;
}

.level-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  line-height: 1;
}

.level-card-header h3 .note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: 0;
}

.level-card-body {
  padding: 0.85rem 1rem;
}

.level-card-body ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.level-card-body li {
  font-size: 0.9rem;
  color: var(--ink-dark);
  margin-bottom: 0.3rem;
  line-height: 1.45;
}

/* ============================================================
   SPONSOR FORM
============================================================ */
.form-intro {
  margin-bottom: 1.5rem;
}

.field {
  margin-bottom: 1.25rem;
}

.hidden {
  display: none;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.field label .req {
  color: var(--teal);
  margin-left: 2px;
}

.label-note {
  font-weight: 400;
  text-transform: none;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,168,165,0.15);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.help-text {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--teal-dark);
  opacity: 0.85;
}

/* Level indicator callout */
.level-indicator {
  margin-top: 0.75rem;
  background: var(--teal);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  transition: background 0.2s;
}

.level-indicator .li-label {
  font-size: 0.82rem;
  color: var(--mint);
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.level-indicator .li-value {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.level-indicator.no-level {
  background: var(--mint-dark);
}

.level-indicator.no-level .li-label {
  color: var(--teal-dark);
}

.level-indicator.no-level .li-value {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Radio row */
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 0.25rem;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.radio-row input[type="radio"] {
  width: auto;
  accent-color: var(--teal);
  cursor: pointer;
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.15s, transform 0.1s;
}

.btn-submit:hover  { background: var(--teal-dark); }
.btn-submit:active { transform: scale(0.99); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--teal-dark);
  opacity: 0.8;
  text-align: center;
}

/* ============================================================
   STATUS / THANK YOU
============================================================ */
.form-status {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  display: none;
}

.form-status.success {
  display: block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.form-status.success span {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.35rem;
  opacity: 0.9;
}

.form-status.error {
  display: block;
  background: #fde8e8;
  color: #b91c1c;
  border: 1.5px solid #fca5a5;
  font-size: 0.95rem;
}

/* ============================================================
   SPONSORS TABLE
============================================================ */
#sponsor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

#sponsor-table th {
  background: var(--teal);
  color: var(--mint);
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 1rem;
  text-align: left;
}

#sponsor-table th:first-child { border-radius: 8px 0 0 0; }
#sponsor-table th:last-child  { border-radius: 0 8px 0 0; }

#sponsor-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dark);
}

#sponsor-table tr:last-child td { border-bottom: none; }
#sponsor-table tr:hover td { background: var(--mint); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--teal);
  color: var(--mint);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ============================================================
   SUCCESS MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 168, 165, 0.35);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--line);
  box-shadow: 0 12px 40px rgba(42,168,165,0.22);
  padding: 2.5rem 2.5rem 2rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.2s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-box .modal-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.modal-box .modal-body {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.modal-close {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.modal-close:hover { background: var(--teal-dark); }