/* Shared nav + footer */
.nav-row {display:flex;align-items:center;justify-content:space-between;height:68px;}
.nav-brand {display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink);font-family:var(--display);font-weight:700;font-size:22px;letter-spacing:-0.02em;}
.nav-brand img {width:44px;height:44px;border-radius:10px;}
.nav-links {display:flex;align-items:center;gap:clamp(18px,2.5vw,32px);}
.nav-link {font-family:var(--sans);font-size:14px;color:var(--ink-soft);text-decoration:none;padding:6px 0;position:relative;transition:color .3s;}
.nav-link:hover {color:var(--ink);}
.footer {padding-block:clamp(56px,7vw,100px);background:white;border-top:1px solid var(--line);}
.footer-grid {
  align-items: start;display:grid;grid-template-columns:1fr;gap:clamp(32px,4vw,64px);}
@media (min-width:800px) {.footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr;}}
.footer-brand { margin-top: 0; }
.footer-brand .display {
  margin-top: 0;font-size:30px;}
.footer-brand p {margin-top:14px;max-width:320px;color:var(--ink-soft);font-size:15px;line-height:1.55;}
.footer-col h4 {font-family:var(--display);font-weight:600;font-size:13px;letter-spacing:0.08em;text-transform:uppercase;color:var(--ink-muted);margin:0 0 16px;}
.footer-col ul {list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px;}
.footer-col a {color:var(--ink-soft);text-decoration:none;font-size:14px;transition:color .3s;}
.footer-col a:hover {color:var(--plum);}
.footer-base {display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;margin-top:clamp(40px,5vw,60px);padding-top:24px;border-top:1px solid var(--line);font-size:12px;color:var(--ink-muted);}
.footer-base a {color:var(--ink-muted);text-decoration:none;}
.footer-base a:hover {color:var(--ink);}

/* ----- HERO ----- */
.sup-hero {
  padding-block: clamp(56px, 6vw, 100px) clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sup-hero::before {
  content: "";
  position: absolute;
  top: -240px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(closest-side, var(--plum-mist), transparent 70%);
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
}
.sup-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 18px 0 0;
  font-variation-settings: "wdth" 100, "opsz" 96;
  max-width: 14ch;
}
.sup-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.sup-hero .lead {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ----- FORM ----- */
.sup-form-wrap {
  padding-block: clamp(40px, 5vw, 80px);
}
.sup-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 60px);
}
@media (min-width: 900px) {
  .sup-form-grid { grid-template-columns: 1.5fr 1fr; gap: clamp(48px, 5vw, 80px); }
}
.sup-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow-md);
}
.sup-form h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--plum-ink);
}
.sup-form .form-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 28px;
}
.sf-row { margin-bottom: 18px; }
.sf-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.sf-row .req { color: var(--plum); margin-left: 2px; }
.sf-row input,
.sf-row select,
.sf-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.sf-row textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.sf-row select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%236b4d8a' stroke-width='1.8'><path d='M1 1L6 6L11 1' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.sf-row input:focus,
.sf-row select:focus,
.sf-row textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px var(--plum-wash);
}
.sf-grid-2 { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media (min-width: 600px) { .sf-grid-2 { grid-template-columns: 1fr 1fr; } }
.sf-grid-2 .sf-row { margin-bottom: 0; }
.sf-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sf-foot .small {
  font-size: 12.5px;
  color: var(--ink-muted);
  max-width: 320px;
  line-height: 1.5;
}

/* Side info */
.sup-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sup-side-card {
  background: var(--plum-wash);
  border: 1px solid var(--plum-mist);
  border-radius: 18px;
  padding: 22px 24px;
}
.sup-side-card .eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 10px;
}
.sup-side-card h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--plum-ink);
}
.sup-side-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.sup-side-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--plum);
  text-decoration: none;
  border-bottom: 1px solid var(--plum-mist);
  padding-bottom: 1px;
  transition: border-color .25s;
}
.sup-side-card a:hover { border-color: var(--plum); }

.sup-urgent {
  background: var(--plum-ink);
  color: white;
  border-color: var(--plum-deep);
}
.sup-urgent .eyebrow { color: var(--plum-soft); }
.sup-urgent h3 { color: white; }
.sup-urgent p { color: rgba(255,255,255,.7); }
.sup-urgent a { color: white; border-color: rgba(255,255,255,.3); }
.sup-urgent a:hover { border-color: white; }

/* Success state */
.sup-success {
  display: none;
  text-align: center;
  padding: clamp(32px, 4vw, 64px) 20px;
}
.sup-success.show { display: block; }
.sup-success .check {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--plum-soft), var(--plum));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 14px 36px -10px rgba(107, 77, 138, 0.55);
}
.sup-success h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--plum-ink);
}
.sup-success p {
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}
