:root {
  --purple-950: #210935;
  --purple-900: #33115a;
  --purple-800: #4c1d95;
  --purple-700: #5b21b6;
  --purple-500: #8b5cf6;
  --purple-100: #ede9fe;
  --purple-50: #f7f2ff;
  --ink: #171321;
  --muted: #625673;
  --line: rgba(49, 22, 88, 0.14);
  --paper: #ffffff;
  --radius: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Inter", "Avenir Next", system-ui, sans-serif;
  color: var(--ink);
  background: var(--purple-50);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--purple-50);
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  --spotlight-x: 72%;
  --spotlight-y: 16%;
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}

.page-shell::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(
    circle 420px at var(--spotlight-x) var(--spotlight-y),
    rgba(139, 92, 246, 0.2),
    rgba(139, 92, 246, 0.06) 44%,
    transparent 76%
  );
  opacity: 0.8;
  transition: opacity 400ms ease;
}

.page-shell.is-spotlight-active::before {
  opacity: 1;
}

.ambient-light {
  position: absolute;
  z-index: -1;
  top: 170px;
  left: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(91, 33, 182, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(126, 34, 206, 0.035), 0 0 0 98px rgba(139, 92, 246, 0.025);
  pointer-events: none;
}

.brand-bar,
.page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-bar {
  padding: 34px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--purple-950);
  font-family: "Avenir Next", "Trebuchet MS", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--purple-700);
  color: white;
  box-shadow: 0 8px 18px rgba(91, 33, 182, 0.22);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.utility-label,
.page-footer {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  max-width: 780px;
  padding: 88px 0 76px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--purple-700);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--purple-950);
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.intro {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 650;
  line-height: 1.72;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  align-items: start;
}

.request-panel,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 56px rgba(49, 17, 90, 0.1);
}

.request-panel {
  padding: 36px;
}

.info-panel {
  padding: 34px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.panel-heading .eyebrow {
  margin-bottom: 8px;
}

.panel-heading h2 {
  max-width: 430px;
  color: var(--purple-950);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.05;
  text-wrap: balance;
}

.step-badge {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--purple-700);
  color: white;
  font-size: 0.75rem;
  font-weight: 950;
}

.muted-badge {
  background: var(--purple-100);
  color: var(--purple-700);
}

form {
  margin-top: 34px;
}

label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 8px;
  color: var(--purple-950);
  font-size: 0.9rem;
  font-weight: 850;
}

label:first-of-type {
  margin-top: 0;
}

.required,
.optional {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.required {
  color: var(--purple-700);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(91, 33, 182, 0.22);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9287a1;
}

input:focus,
textarea:focus {
  border-color: var(--purple-700);
  box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.12);
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.55;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  border: 0;
  border-radius: 10px;
  background: var(--purple-700);
  color: white;
  cursor: pointer;
  font-weight: 900;
  outline-offset: 4px;
  overflow: hidden;
  position: relative;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.submit-button::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.3) 50%, transparent 82%);
  transform: translateX(-130%);
  transition: transform 520ms var(--ease);
}

.submit-button:hover {
  background: var(--purple-800);
  box-shadow: 0 12px 24px rgba(91, 33, 182, 0.2);
  transform: translateY(-1px);
}

.submit-button:hover::before,
.submit-button:focus-visible::before {
  transform: translateX(130%);
}

.submit-button:disabled {
  background: #b7a8c9;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.submit-button:disabled::before {
  display: none;
}

.submit-button svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-status {
  min-height: 1.3em;
  margin: 12px 0 0;
  color: var(--purple-700);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.is-confirmed {
  border-left: 3px solid var(--purple-700);
  padding-left: 10px;
}

.compact-heading h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.process-list {
  display: grid;
  gap: 27px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.list-number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(91, 33, 182, 0.22);
  border-radius: 50%;
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 950;
}

.process-list h3 {
  color: var(--purple-950);
  font-size: 1rem;
}

.process-list p,
.direct-contact p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 650;
  line-height: 1.58;
}

.direct-contact {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.direct-contact .eyebrow {
  margin-bottom: 0;
}

.direct-contact a {
  color: var(--purple-700);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-footer {
  padding: 34px 0 42px;
}

:focus-visible {
  outline: 3px solid rgba(214, 163, 62, 0.9);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 32px, 620px);
  }

  .hero {
    padding: 64px 0 54px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 24px, 620px);
  }

  .brand-bar {
    padding-top: 22px;
  }

  .utility-label {
    font-size: 0.72rem;
  }

  .hero {
    padding: 54px 0 44px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .intro {
    font-size: 1rem;
  }

  .request-panel,
  .info-panel {
    padding: 24px;
  }

  .panel-heading h2 {
    font-size: 1.75rem;
  }

  .page-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .page-shell::before {
    opacity: 0.55;
  }
}
