:root {
  --orange: #ff4f18;
  --orange-2: #ff7a22;
  --black: #00101f;
  --blue: #001d3f;
  --white: #ffffff;
  --gray: #f4f5f9;
  --timid-blue: #d8e0ed;
  --text: #092033;
  --muted: #647080;
  --border: rgba(0, 16, 31, 0.11);
  --shadow: 0 28px 90px rgba(0, 16, 31, 0.13);
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 79, 24, 0.12), transparent 25rem),
    radial-gradient(circle at 91% 8%, rgba(0, 29, 63, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff, #f7f9fc 75%, #ffffff);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(0, 16, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 16, 31, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.meeting-shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(255, 79, 24, 0.45);
  outline-offset: 3px;
}

.meeting-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 16, 31, 0.07);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.meeting-brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.meeting-brand img {
  display: block;
  object-fit: contain;
}

.meeting-brand > span > span {
  color: var(--orange);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  color: var(--orange);
  transform: translateX(-3px);
}

.meeting-main {
  position: relative;
  isolation: isolate;
  padding: 82px 0 108px;
}

.meeting-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.orb-one {
  left: -13rem;
  top: 1rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(255, 79, 24, 0.1), transparent 67%);
}

.orb-two {
  right: -17rem;
  bottom: 0;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(0, 29, 63, 0.1), transparent 68%);
}

.meeting-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.meeting-intro {
  position: sticky;
  top: 44px;
  padding-top: 18px;
}

.meeting-eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 25px;
  color: var(--black);
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.meeting-lead {
  max-width: 560px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.meeting-points {
  display: grid;
  gap: 14px;
}

.meeting-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
}

.meeting-points > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 79, 24, 0.1);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
}

.meeting-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.meeting-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--black);
  font-size: 0.96rem;
}

.privacy-note {
  max-width: 440px;
  margin: 34px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--orange);
  font-weight: 800;
}

.form-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.form-progress {
  padding: 25px 30px 23px;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 245, 249, 0.7);
}

.progress-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 16, 31, 0.08);
}

.progress-track span {
  display: block;
  width: var(--progress, 33.333%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.form-progress ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.form-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.form-progress li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  font-size: 0.68rem;
}

.form-progress li.is-active,
.form-progress li.is-complete {
  color: var(--black);
}

.form-progress li.is-active span,
.form-progress li.is-complete span {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.form-progress li.is-complete span {
  border-color: var(--orange);
  background: var(--orange);
}

.meeting-form {
  min-height: 590px;
}

.form-step,
.success-state {
  margin: 0;
  padding: 38px 38px 34px;
  border: 0;
}

.js .form-step {
  animation: stepIn 0.35s ease both;
}

.form-step[hidden],
.success-state[hidden] {
  display: none;
}

.no-js .form-step[hidden] {
  display: block;
}

.no-js .form-progress,
.no-js [data-next],
.no-js [data-back] {
  display: none;
}

.form-step legend {
  padding: 0;
  color: var(--black);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.step-intro {
  margin: 13px 0 28px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

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

.choice-card {
  position: relative;
  min-height: 148px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card:has(input:checked) {
  border-color: rgba(255, 79, 24, 0.55);
  background: rgba(255, 79, 24, 0.055);
  box-shadow: 0 0 0 3px rgba(255, 79, 24, 0.09);
}

.choice-card:has(input:focus-visible) {
  outline: 3px solid rgba(255, 79, 24, 0.4);
  outline-offset: 3px;
}

.choice-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--gray);
  color: var(--orange);
  font-weight: 800;
  transition: background 0.22s ease, color 0.22s ease;
}

.choice-card:has(input:checked) .choice-icon {
  background: var(--orange);
  color: var(--white);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  margin-bottom: 6px;
  color: var(--black);
  font-size: 0.98rem;
}

.choice-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 800;
}

.field > span small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--gray);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 114px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #87919e;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 79, 24, 0.62);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 79, 24, 0.1);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid,
.consent.is-invalid {
  border-color: #c23520;
  box-shadow: 0 0 0 3px rgba(194, 53, 32, 0.09);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.step-actions.align-end {
  justify-content: flex-end;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(255, 79, 24, 0.24);
}

.button-primary:hover {
  background: var(--orange-2);
}

.button-secondary {
  border-color: var(--border);
  background: var(--white);
  color: var(--black);
}

.request-summary {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 79, 24, 0.17);
  border-radius: 17px;
  background: rgba(255, 79, 24, 0.055);
}

.request-summary > span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-summary strong {
  color: var(--black);
}

.request-summary small {
  color: var(--muted);
}

.form-alert {
  margin: 24px 38px 0;
  padding: 12px 14px;
  border: 1px solid rgba(194, 53, 32, 0.24);
  border-radius: 12px;
  background: rgba(194, 53, 32, 0.07);
  color: #8f281a;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-alert a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.success-state {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 19px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(255, 79, 24, 0.25);
}

.success-state h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.success-state > p:not(.meeting-eyebrow) {
  max-width: 450px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.success-contact-link {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
}

.success-contact-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.meeting-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.meeting-footer .meeting-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.meeting-footer .meeting-shell > span:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.meeting-footer a:hover {
  color: var(--orange);
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
  .choice-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 79, 24, 0.28);
    box-shadow: 0 16px 34px rgba(0, 16, 31, 0.08);
  }
}

@media (max-width: 1000px) {
  .meeting-main {
    padding-top: 62px;
  }

  .meeting-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .meeting-intro {
    position: static;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: end;
  }

  .meeting-intro .meeting-eyebrow,
  .meeting-intro h1,
  .meeting-intro .meeting-lead {
    grid-column: 1;
  }

  .meeting-points {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .privacy-note {
    display: none;
  }
}

@media (max-width: 700px) {
  .meeting-shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .header-inner {
    min-height: 68px;
  }

  .back-link {
    font-size: 0;
  }

  .back-link span {
    font-size: 1.2rem;
  }

  .meeting-main {
    padding: 44px 0 70px;
  }

  .meeting-intro {
    display: block;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .meeting-lead {
    margin-bottom: 32px;
  }

  .meeting-points {
    margin-bottom: 10px;
  }

  .form-panel {
    border-radius: 23px;
  }

  .form-progress {
    padding: 20px;
  }

  .form-progress li {
    justify-content: center;
    font-size: 0;
  }

  .form-progress li span {
    font-size: 0.68rem;
  }

  .meeting-form {
    min-height: 0;
  }

  .form-step,
  .success-state {
    padding: 28px 22px 24px;
  }

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .choice-card {
    min-height: 0;
    padding: 17px;
  }

  .choice-icon {
    margin-bottom: 12px;
  }

  .step-actions {
    flex-direction: column-reverse;
  }

  .step-actions.align-end {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .form-alert {
    margin: 20px 22px 0;
  }

  .success-state {
    min-height: 480px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
