:root {
  --signup-h86-navy-950: #06172f;
  --signup-h86-navy-900: #0a2342;
  --signup-h86-navy-800: #12385f;
  --signup-h86-gold: #d99a00;
  --signup-h86-gold-dark: #b87700;
  --signup-h86-warm: #fbf7ef;
  --signup-h86-surface: #f8fafc;
  --signup-h86-white: #ffffff;
  --signup-h86-border: #dce4ed;
  --signup-h86-text: #0b1f38;
  --signup-h86-muted: #66758a;
  --signup-h86-danger: #9d2f2f;
  --signup-h86-shadow: 0 28px 80px rgba(8, 31, 63, .10);
}

body.signup-page-h86 {
  margin: 0;
  min-width: 320px;
  background: var(--signup-h86-white);
  color: var(--signup-h86-text);
  font-family: Manrope, Arial, sans-serif;
}

body.signup-page-h86 img { display: block; max-width: 100%; }
body.signup-page-h86 a { text-underline-offset: 3px; }

.signup-h86 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(430px, 42%) minmax(0, 58%);
  background: var(--signup-h86-white);
}

.signup-h86__story {
  position: sticky;
  top: 0;
  min-width: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: minmax(330px, 49vh) minmax(0, 1fr);
  overflow: hidden;
  border-right: 1px solid var(--signup-h86-border);
  background: var(--signup-h86-warm);
}

.signup-h86__photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #eadfce;
}

.signup-h86__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 23, 47, .015) 0%, rgba(6, 23, 47, 0) 64%, rgba(6, 23, 47, .07) 100%);
}

.signup-h86__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: brightness(1.06) saturate(.94) contrast(.98);
  transform: scale(1.006);
}

.signup-h86__photo-badge {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 3.5vw, 54px);
  top: clamp(24px, 3.5vw, 48px);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(8,31,63,.09);
  color: var(--signup-h86-navy-900);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.signup-h86__story-copy {
  min-height: 0;
  display: grid;
  align-content: center;
  padding: clamp(28px, 3.8vw, 52px) clamp(30px, 4.8vw, 68px);
  background: linear-gradient(135deg, #ffffff 0%, #fbf7ef 100%);
}

.signup-h86__eyebrow,
.signup-h86__heading > span {
  display: block;
  color: var(--signup-h86-gold-dark);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .18em;
}

.signup-h86__story-copy h1 {
  max-width: 11.5ch;
  margin: 11px 0 0;
  color: var(--signup-h86-text);
  font-size: clamp(2.15rem, 3.25vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.signup-h86__story-copy h1 em {
  color: var(--signup-h86-gold);
  font-style: normal;
}

.signup-h86__story-copy > p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--signup-h86-muted);
  font-size: clamp(.9rem, .95vw, 1rem);
  line-height: 1.62;
}

.signup-h86__benefits {
  margin-top: 22px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--signup-h86-border);
}

.signup-h86__benefits > span {
  min-width: 0;
  display: grid;
  grid-template-columns: 29px 1fr;
  column-gap: 9px;
  padding: 0 15px;
  border-right: 1px solid var(--signup-h86-border);
}

.signup-h86__benefits > span:first-child { padding-left: 0; }
.signup-h86__benefits > span:last-child { padding-right: 0; border-right: 0; }
.signup-h86__benefits svg {
  grid-row: span 2;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--signup-h86-navy-800);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.signup-h86__benefits b { font-size: .77rem; line-height: 1.3; }
.signup-h86__benefits small { margin-top: 3px; color: var(--signup-h86-muted); font-size: .66rem; line-height: 1.35; }

.signup-h86__panel {
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: clamp(30px, 4vw, 62px) clamp(24px, 4.5vw, 70px) 72px;
  background:
    radial-gradient(circle at 95% 3%, rgba(217,154,0,.07), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.signup-h86__card {
  width: min(100%, 700px);
}

.signup-h86__logo {
  width: min(300px, 64%);
  display: block;
  margin: 0 auto clamp(34px, 4.8vh, 54px);
}

.signup-h86__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.signup-h86__heading {
  text-align: left;
}

.signup-h86__heading h2 {
  margin: 10px 0 0;
  color: var(--signup-h86-text);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.signup-h86__heading p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--signup-h86-muted);
  font-size: .94rem;
  line-height: 1.58;
}

.signup-h86__alert,
.signup-h86__notice {
  margin-top: 21px;
  border-radius: 13px;
  font-size: .84rem;
  line-height: 1.48;
}

.signup-h86__alert {
  padding: 14px 16px;
  border: 1px solid #efc9c9;
  border-left: 4px solid #c94040;
  background: #fff5f5;
  color: #852727;
}
.signup-h86__alert p { margin: 0; }
.signup-h86__alert--account {
  border-color: #ead39a;
  border-left-color: var(--signup-h86-gold-dark);
  background: #fff9ea;
  color: #664800;
}
.signup-h86__alert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}
.signup-h86__alert-actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d7bd75;
  border-radius: 9px;
  background: #fff;
  color: var(--signup-h86-navy-900);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
}
.signup-h86__alert-actions .signup-h86__alert-primary {
  border-color: var(--signup-h86-navy-900);
  background: var(--signup-h86-navy-900);
  color: #fff;
}

.signup-h86__notice {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid #efd98f;
  background: #fff8df;
  color: #644c00;
}
.signup-h86__notice svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--signup-h86-gold-dark);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.signup-h86__notice p { margin: 0; }
.signup-h86__notice strong { color: #4f3a00; }

.signup-h86__form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.signup-h86__form fieldset {
  margin: 0;
  padding: 17px;
  border: 1px solid var(--signup-h86-border);
  border-radius: 16px;
  background: rgba(248,250,252,.72);
}

.signup-h86__form legend {
  padding: 0 7px;
  color: var(--signup-h86-navy-900);
  font-size: .78rem;
  font-weight: 850;
}

.signup-h86__form legend span {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff2cf;
  color: var(--signup-h86-gold-dark);
  font-size: .68rem;
}

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

.signup-h86__form label {
  display: grid;
  gap: 7px;
  color: var(--signup-h86-text);
  font-size: .77rem;
  font-weight: 760;
}

.signup-h86__wide { grid-column: 1 / -1; }

.signup-h86__form input,
.signup-h86__form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  padding: 11px 13px;
  color: var(--signup-h86-text);
  font: 600 .9rem Manrope, Arial, sans-serif;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.signup-h86__form input:hover,
.signup-h86__form select:hover { border-color: #aebdce; }
.signup-h86__form input:focus,
.signup-h86__form select:focus {
  border-color: var(--signup-h86-gold);
  box-shadow: 0 0 0 4px rgba(217,154,0,.12);
}

.signup-h86__secure-note,
.signup-h86__footnote {
  margin: 0;
  color: var(--signup-h86-muted);
  font-size: .72rem;
  line-height: 1.5;
}
.signup-h86__secure-note { margin-bottom: 12px; }

.signup-h86__terms {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 10px !important;
  padding: 2px 3px;
}
.signup-h86__terms input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--signup-h86-gold-dark);
}
.signup-h86__terms span {
  color: var(--signup-h86-muted);
  font-size: .76rem;
  font-weight: 520;
  line-height: 1.5;
}

.signup-h86__submit {
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #e4a600, #cc8800);
  color: #fff;
  font: 800 .92rem Manrope, Arial, sans-serif;
  box-shadow: 0 12px 27px rgba(217,154,0,.22);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.signup-h86__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #d99900, #b97600);
  box-shadow: 0 16px 32px rgba(217,154,0,.28);
}
.signup-h86__submit:disabled { cursor: not-allowed; opacity: .46; box-shadow: none; }
.signup-h86__footnote { text-align: center; }

.signup-h86__links {
  margin-top: 25px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  border-top: 1px solid var(--signup-h86-border);
  color: var(--signup-h86-muted);
  font-size: .77rem;
}
.signup-h86__links a {
  color: var(--signup-h86-gold-dark);
  font-weight: 800;
}
.signup-h86__links > a:last-child { color: var(--signup-h86-text); }

.signup-h86__submit:focus-visible,
.signup-h86__form input:focus-visible,
.signup-h86__form select:focus-visible,
.signup-h86 a:focus-visible {
  outline: 3px solid rgba(217,154,0,.28);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .signup-h86 { grid-template-columns: minmax(390px, 39%) minmax(0, 61%); }
  .signup-h86__story { grid-template-rows: minmax(300px, 43vh) minmax(0, 1fr); }
  .signup-h86__story-copy { padding: 32px 38px; }
  .signup-h86__benefits { grid-template-columns: 1fr; gap: 9px; padding-top: 16px; }
  .signup-h86__benefits > span { padding: 0; border-right: 0; }
  .signup-h86__panel { padding-inline: 36px; }
}

@media (max-width: 900px) {
  .signup-h86 { grid-template-columns: 1fr; }
  .signup-h86__story {
    position: relative;
    height: auto;
    min-height: auto;
    grid-template-rows: 340px auto;
    border-right: 0;
    border-bottom: 1px solid var(--signup-h86-border);
  }
  .signup-h86__story-copy { padding: 34px 28px 38px; }
  .signup-h86__story-copy h1 { max-width: 16ch; }
  .signup-h86__benefits { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; }
  .signup-h86__benefits > span { padding: 0 13px; border-right: 1px solid var(--signup-h86-border); }
  .signup-h86__benefits > span:first-child { padding-left: 0; }
  .signup-h86__benefits > span:last-child { border-right: 0; padding-right: 0; }
  .signup-h86__panel { padding: 48px 26px 62px; }
}

@media (max-width: 640px) {
  .signup-h86__story { grid-template-rows: 270px auto; }
  .signup-h86__photo img { object-position: 52% 42%; }
  .signup-h86__photo-badge { left: 18px; top: 18px; min-height: 33px; padding-inline: 12px; font-size: .59rem; }
  .signup-h86__story-copy { padding: 28px 20px 31px; }
  .signup-h86__story-copy h1 { font-size: clamp(2rem, 10vw, 2.55rem); }
  .signup-h86__story-copy > p { font-size: .9rem; }
  .signup-h86__benefits { grid-template-columns: 1fr; gap: 11px; }
  .signup-h86__benefits > span { padding: 0; border-right: 0; }
  .signup-h86__panel { padding: 38px 16px 50px; }
  .signup-h86__logo { width: min(255px, 76%); margin-bottom: 34px; }
  .signup-h86__heading h2 { font-size: 2.25rem; }
  .signup-h86__grid { grid-template-columns: 1fr; }
  .signup-h86__wide { grid-column: auto; }
  .signup-h86__form fieldset { padding: 15px 13px; }
  .signup-h86__links { display: grid; text-align: center; }
}

@media (max-width: 390px) {
  .signup-h86__story { grid-template-rows: 235px auto; }
  .signup-h86__panel { padding-inline: 13px; }
  .signup-h86__heading h2 { font-size: 2.05rem; }
  .signup-h86__form input,
  .signup-h86__form select { min-height: 48px; font-size: .86rem; }
}
