/* ExumoShortlist — static Netlify site */

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0f172a;
  background: #f3f4f6;
  line-height: 1.5;
}

:root{
  --navy: #0b1220;
  --navy-2: #101a30;
  --text-muted: #6b7280;
  --border: rgba(15, 23, 42, 0.12);
  --card: #ffffff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --chip: rgba(255, 255, 255, 0.16);
  --chip-border: rgba(255, 255, 255, 0.22);
  --shadow: 0 18px 45px rgba(2, 6, 23, 0.10);
  --shadow-2: 0 10px 28px rgba(2, 6, 23, 0.10);
  --radius: 16px;
}

.container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo{
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #0f172a;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-dark{
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover{ background: var(--navy-2); }
.btn-pill{ padding: 12px 18px; }
.btn-primary{
  background: var(--green);
  color: #0b1220;
  border-color: rgba(0,0,0,0.08);
}
.btn-primary:hover{ background: var(--green-dark); color: #fff; }
.btn-secondary{
  background: #fff;
  color: #0f172a;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover{
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.92);
}

/* Hero */
.hero{
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 92px 0 92px;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,23,0.60), rgba(2,6,23,0.72)),
    radial-gradient(1200px 800px at 60% 40%, rgba(34,197,94,0.18), transparent 55%),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=2400&q=75");
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}
.hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.hero-title{
  margin: 0 0 14px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: clamp(38px, 5vw, 64px);
  text-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.hero-subtitle{
  margin: 0 auto 26px;
  max-width: 820px;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.hero-chips{
  margin: 20px auto 26px;
  max-width: 860px;
}
.hero-chips-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip{
  border: 1px solid var(--chip-border);
  background: var(--chip);
  color: rgba(255,255,255,0.92);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
  backdrop-filter: blur(10px);
}
.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.20);
}
.chip.is-selected{
  background: rgba(34,197,94,0.24);
  border-color: rgba(34,197,94,0.50);
}
.hero-cta{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2px;
}

/* Form section */
.form-section{
  padding: 56px 0 90px;
}
.form-card{
  width: min(860px, 100%);
  margin: 0 auto 0;
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 40px;
}

.form-header{
  text-align: center;
  margin-bottom: 26px;
}
.form-header h2{
  margin: 0 0 6px 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.form-header p{
  margin: 0;
  color: var(--text-muted);
}

.honeypot{ display: none; }

.grid{ display: grid; gap: 18px; }
.grid.two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.field label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
.field textarea{ resize: vertical; }
.field input::placeholder,
.field textarea::placeholder{ color: rgba(107,114,128,0.75); }
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.14);
}

fieldset.contact{
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  padding: 18px 16px 16px;
  margin: 18px 0;
  background: rgba(2, 6, 23, 0.015);
}
fieldset.contact legend{
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(15,23,42,0.55);
}

.inline-error{
  margin-top: 10px;
  font-size: 13px;
  color: #b91c1c;
}

/* Details accordion */
.details{
  margin-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 14px;
}
.details-toggle{
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  padding: 10px 6px;
  cursor: pointer;
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
}
.details-toggle:hover{ color: #15803d; }
.details-toggle-icon{
  display: inline-block;
  width: 18px;
  height: 18px;
  color: currentColor;
  transform: translateY(-1px);
}
.details.is-open .details-toggle-icon{ transform: rotate(90deg); }
.details-content{
  margin-top: 8px;
  padding: 10px 0 0;
}

/* Submit */
.btn-submit{
  width: 100%;
  margin-top: 22px;
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  border: 1px solid rgba(2,6,23,0.18);
  box-shadow: var(--shadow-2);
}
.btn-submit:hover{ background: var(--navy-2); }

/* Success */
.success{
  border-radius: 14px;
  border: 1px solid rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.success-title{
  font-weight: 800;
  color: #166534;
  margin-bottom: 2px;
}
.success-body{
  color: #14532d;
  font-size: 14px;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  padding: 22px 0;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(15,23,42,0.70);
}
.footer-left{ font-weight: 700; color: #0f172a; }
.footer-link{
  color: rgba(15,23,42,0.70);
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 780px){
  .grid.two{ grid-template-columns: 1fr; }
  .hero{ padding: 78px 0 72px; min-height: 520px; }
  .form-card{ padding: 26px; margin-top: 0; }
  .header-inner{ padding: 14px 0; }
}

