@font-face {
  font-family: "GeistSans";
  src: url("/fonts/geist-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Editorial";
  src: url("/fonts/editorial-ultralight.woff2") format("woff2");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Editorial";
  src: url("/fonts/editorial-ultralight-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 200;
  font-display: swap;
}

:root {
  --font-sans: "GeistSans", Arial, Helvetica, sans-serif;
  --font-heading: "Editorial", Georgia, serif;

  --c-bg: #0c0c0c;
  --c-surface: #111111;
  --c-surface-muted: #161616;
  --c-surface-raised: #1b1b1b;
  --c-ink: #f2f1ed;
  --c-text: #d7d4cf;
  --c-muted: #9d9992;
  --c-subtle: #6f6b66;
  --c-placeholder: #69645e;
  --c-line: rgba(242, 241, 237, 0.12);
  --c-line-strong: rgba(242, 241, 237, 0.2);
  --c-line-hover: rgba(242, 241, 237, 0.38);

  --c-navy: #0c0c0c;
  --c-navy-hover: #181818;
  --c-accent: #e01b28;
  --c-accent-strong: #ff2938;
  --c-accent-deep: #410306;
  --c-accent-soft: rgba(224, 27, 40, 0.12);
  --c-accent-softer: rgba(224, 27, 40, 0.06);
  --c-accent-ink: #ff606a;
  --c-gold: #c5a064;
  --c-offwhite: #f2f1ed;

  --c-danger: #ff4f58;
  --c-danger-hover: #ff6d74;
  --c-danger-soft: rgba(255, 79, 88, 0.1);
  --c-warning: #d9b35f;
  --c-warning-soft: rgba(217, 179, 95, 0.09);
  --c-warning-line: rgba(217, 179, 95, 0.35);
  --c-whatsapp: #25d366;
  --c-whatsapp-hover: #34e476;
  --c-whatsapp-ink: #04150b;

  --ring: 0 0 0 3px rgba(224, 27, 40, 0.23);
  --ring-danger: 0 0 0 3px rgba(255, 79, 88, 0.18);
  --outline-focus: 1px dashed rgba(242, 241, 237, 0.72);

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-pill: 999px;

  --shadow-xs: none;
  --shadow-sm: 0 14px 40px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 28px 70px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 42px 110px rgba(0, 0, 0, 0.42);

  --container: 1320px;
  --container-narrow: 960px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 84px;

  --ease-out: cubic-bezier(0.43, 0.195, 0.02, 1);
  --ease-sharp: cubic-bezier(0.8, 0, 0, 1);
  --dur-fast: 160ms;
  --dur: 320ms;
  --dur-slow: 720ms;

  --pointer-x: 50vw;
  --pointer-y: 20vh;
}

@media (max-width: 640px) {
  :root { --header-h: 70px; }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  background: var(--c-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#app {
  display: flex;
  flex: 1;
  flex-direction: column;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: var(--outline-focus);
  outline-offset: 2px;
}

[data-autofocus]:focus {
  outline: none;
}

.icon {
  display: inline-block;
  flex: none;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.2em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: calc(var(--container-narrow) + var(--gutter) * 2);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--c-navy);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--dur) var(--ease-out);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  color: var(--c-accent-strong);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.noscript {
  max-width: 560px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(246, 247, 249, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
}

body[data-screen="wizard"] .header,
body[data-screen="review"] .header,
body[data-screen="done"] .header {
  border-bottom-color: var(--c-line);
  background: rgba(255, 255, 255, 0.9);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  color: var(--c-ink);
  text-decoration: none;
}

.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
  transition: transform var(--dur) var(--ease-out);
}

.brand:hover .brand__mark {
  transform: rotate(-6deg);
}

.brand__product {
  padding-left: 10px;
  border-left: 1px solid var(--c-line-strong);
  color: var(--c-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.header__aside {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--c-muted);
  font-size: 0.875rem;
}

.header__meta,
.save-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header__meta .icon,
.save-status .icon {
  color: var(--c-accent-strong);
}

.header__meta--success {
  color: var(--c-accent-strong);
  font-weight: 600;
}

.save-status.is-warning,
.save-status.is-warning .icon {
  color: var(--c-warning);
}

.header__counter {
  display: none;
  padding: 3px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  background: var(--c-surface);
  color: var(--c-ink);
  font-size: 0.8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.progress--header {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 0;
  background: transparent;
}

.progress--header .progress__bar {
  border-radius: 0 3px 3px 0;
}

.main {
  flex: 1;
  outline: none;
  overflow-x: clip;
}

.footer {
  border-top: 1px solid var(--c-line);
  background: var(--c-surface);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  padding-block: 22px;
  color: var(--c-muted);
  font-size: 0.875rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
}

.footer__brand strong {
  color: var(--c-ink);
}

.footer__mark {
  width: 24px;
  height: 24px;
}

.footer__note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__note .icon {
  color: var(--c-accent-strong);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__links a {
  border-radius: 4px;
  text-decoration: none;
  transition: color var(--dur-fast);
}

.footer__links a:hover {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1023px) {
  body[data-screen="wizard"] .header__counter {
    display: inline-block;
  }
}

@media (max-width: 860px) {
  .footer__note {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand__product {
    display: none;
  }

  .header__meta span,
  .save-status span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header__meta--success span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
}
.btn {
  --btn-h: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--btn-h);
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    color var(--dur-fast) ease,
    box-shadow var(--dur) ease,
    transform var(--dur-fast) ease;
}

.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--dur) var(--ease-out);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn:focus-visible {
  outline: var(--outline-focus);
  outline-offset: 2px;
}

.btn--lg {
  --btn-h: 54px;
  padding: 0 26px;
  border-radius: 14px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--c-navy);
  box-shadow: 0 1px 2px rgba(15, 20, 48, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--primary:hover {
  background: var(--c-navy-hover);
  box-shadow: 0 10px 24px -10px rgba(19, 24, 54, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn--primary:hover .icon:last-child {
  transform: translateX(3px);
}

.btn--secondary {
  border-color: var(--c-line-strong);
  background: var(--c-surface);
  box-shadow: var(--shadow-xs);
  color: var(--c-ink);
}

.btn--secondary:hover {
  border-color: var(--c-line-hover);
  background: var(--c-surface-muted);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
}

.btn--ghost:hover {
  background: rgba(15, 20, 48, 0.05);
  color: var(--c-ink);
}

.btn--ghost:hover .icon:first-child {
  transform: translateX(-2px);
}

.btn--link {
  --btn-h: 36px;
  gap: 6px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: var(--c-accent-strong);
  font-size: 0.875rem;
}

.btn--link .icon {
  width: 16px;
  height: 16px;
}

.btn--link:hover {
  background: var(--c-accent-soft);
}

.btn--whatsapp {
  background: var(--c-whatsapp);
  box-shadow: 0 1px 2px rgba(4, 49, 26, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--c-whatsapp-ink);
}

.btn--whatsapp:hover {
  background: var(--c-whatsapp-hover);
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.75);
}

.btn--whatsapp .icon {
  width: 20px;
  height: 20px;
}

.btn--danger {
  background: var(--c-danger);
  color: #fff;
}

.btn--danger:hover {
  background: var(--c-danger-hover);
}

.btn[hidden] {
  display: none;
}
.field-slot {
  display: grid;
  grid-column: 1 / -1;
  grid-template-rows: 1fr;
  min-width: 0;
  transition:
    grid-template-rows var(--dur-slow) var(--ease-out),
    opacity var(--dur) ease;
}

.field-slot--half {
  grid-column: span 1;
}

.field-slot__inner {
  min-height: 0;
  margin: -6px;
  padding: 6px;
  overflow: hidden;
}

.field-slot.is-collapsed {
  grid-template-rows: 0fr;
  opacity: 0;
}

.field-group-title {
  grid-column: 1 / -1;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group-title:not(:first-child) {
  margin-top: 8px;
}

.field {
  min-width: 0;
  margin: 0;
  padding: 0 0 28px;
  border: 0;
}

.field__label {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  padding: 0;
  color: var(--c-ink);
  font-size: 0.96875rem;
  font-weight: 600;
  line-height: 1.4;
}

.field__required {
  padding-left: 3px;
  white-space: nowrap;
  color: var(--c-accent-strong);
  font-weight: 700;
}

.field__hint {
  margin: -2px 0 12px;
  color: var(--c-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.field__error {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  color: var(--c-danger);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  animation: fade-slide-in var(--dur) var(--ease-out);
}

.field__error[hidden] {
  display: none;
}

.field__error-icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.input {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-md);
  appearance: none;
  background: var(--c-surface);
  box-shadow: var(--shadow-xs);
  color: var(--c-ink);
  font-size: 1rem;
  line-height: 1.5;
  transition:
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}

.input::placeholder {
  color: var(--c-placeholder);
  opacity: 1;
}

.input:hover {
  border-color: var(--c-line-hover);
}

.input:focus {
  border-color: var(--c-accent-strong);
  box-shadow: var(--ring);
  outline: none;
}

.input--textarea {
  min-height: 112px;
  overflow: hidden;
  resize: none;
}

.field.has-error .input {
  border-color: var(--c-danger);
  background: var(--c-danger-soft);
}

.field.has-error .input:focus {
  box-shadow: var(--ring-danger);
}

.select {
  position: relative;
}

.select__chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  color: var(--c-muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.choice__control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--c-line-strong);
  background: var(--c-surface);
  box-shadow: var(--shadow-xs);
  color: var(--c-text);
  transition:
    border-color var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease,
    transform var(--dur-fast) ease;
}

.choice:hover .choice__control {
  border-color: var(--c-line-hover);
  background: var(--c-surface-muted);
}

.choice:active .choice__control {
  transform: scale(0.985);
}

.choice__input:focus-visible + .choice__control {
  border-color: var(--c-accent-strong);
  box-shadow: var(--ring);
}

.choice__input:checked + .choice__control {
  border-color: var(--c-accent-strong);
  background: var(--c-accent-softer);
  box-shadow: inset 0 0 0 1px var(--c-accent-strong);
  color: var(--c-ink);
}

.choice__input:checked:focus-visible + .choice__control {
  box-shadow: inset 0 0 0 1px var(--c-accent-strong), var(--ring);
}

.choice__indicator {
  display: grid;
  flex: none;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid #bfc5d2;
  border-radius: 6px;
  background: var(--c-surface);
  color: #fff;
  transition:
    background-color var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

.choice__input[type="radio"] + .choice__control .choice__indicator {
  border-radius: 50%;
}

.choice__indicator .icon {
  width: 12px;
  height: 12px;
  stroke-width: 3.2;
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity var(--dur-fast) ease,
    transform var(--dur) var(--ease-out);
}

.choice__input:checked + .choice__control .choice__indicator {
  border-color: var(--c-accent-strong);
  background: var(--c-accent-strong);
}

.choice__input:checked + .choice__control .choice__indicator .icon {
  opacity: 1;
  transform: none;
}

.choice__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.choice__label {
  font-weight: 500;
  line-height: 1.35;
}

.choice__desc {
  color: var(--c-muted);
  font-size: 0.84375rem;
  line-height: 1.45;
}

.field.has-error .choice__control {
  border-color: rgba(194, 55, 47, 0.5);
}

.choice--chips .choice__control,
.choice--pills .choice__control {
  min-height: 44px;
  padding: 9px 16px 9px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
}

.choice--chips .choice__indicator,
.choice--pills .choice__indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

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

.choice--cards .choice__control {
  align-items: flex-start;
  height: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
}

.choice--cards .choice__indicator {
  margin-top: 1px;
}

.choice--cards .choice__label {
  color: var(--c-ink);
  font-weight: 600;
}

.choices--palette {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.choice--palette .choice__control {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  height: 100%;
  padding: 8px 8px 10px;
  border-radius: var(--radius-lg);
}

.palette__swatch {
  display: block;
  height: 44px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(15, 20, 48, 0.08);
}

.palette__swatch svg {
  display: block;
  width: 100%;
  height: 100%;
}

.palette__swatch--empty {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, #f3f4f7 0 8px, #eceef2 8px 16px);
  color: var(--c-muted);
}

.palette__swatch--empty .icon {
  width: 20px;
  height: 20px;
}

.choice__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 0 4px;
}

.choice--palette .choice__label {
  color: var(--c-ink);
  font-size: 0.875rem;
  font-weight: 600;
}

.choice--palette .choice__indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.choice--palette .choice__desc {
  padding: 0 4px;
  font-size: 0.78125rem;
}

.choice--palette:has(.palette__swatch--empty) {
  grid-column: span 2;
}

.choice--palette:has(.palette__swatch--empty) .choice__control {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 2px 12px;
}

.choice--palette:has(.palette__swatch--empty) .palette__swatch {
  grid-row: 1 / span 2;
  height: 100%;
  min-height: 52px;
}

.choice--palette:has(.palette__swatch--empty) .choice__row {
  padding: 4px 2px 0 0;
}

.choice--palette:has(.palette__swatch--empty) .choice__desc {
  padding: 0 2px 0 0;
}

@media (max-width: 640px) {
  .field-slot--half {
    grid-column: 1 / -1;
  }

  .choices--cards {
    grid-template-columns: 1fr;
  }

  .choices--palette {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice--chips,
  .choice--pills {
    max-width: 100%;
  }

  .choice--chips .choice__label,
  .choice--pills .choice__label {
    overflow-wrap: anywhere;
  }
}
.progress {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--c-line);
}

.progress__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--progress, 0) * 100%);
  border-radius: inherit;
  background: var(--c-accent);
  transition: width var(--dur-slow) var(--ease-out);
}

.progress--thin {
  height: 5px;
}

.tech-logos {
  padding: 36px 0;
  text-align: center;
}

.tech-logos__title {
  color: var(--c-subtle);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-logos__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tech-logos__item {
  --brand: var(--c-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #a1a7b9;
  transition: color var(--dur) ease;
}

.tech-logos__icon {
  width: 22px;
  height: 22px;
  transition: transform var(--dur) var(--ease-out);
}

.tech-logos__name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.tech-logos__item:hover {
  color: var(--brand);
}

.tech-logos__item:hover .tech-logos__icon {
  transform: translateY(-2px);
}

.tech-logos__item[data-tech="html5"] { --brand: #e34f26; }
.tech-logos__item[data-tech="css"] { --brand: #663399; }
.tech-logos__item[data-tech="javascript"] { --brand: #d4b80b; }
.tech-logos__item[data-tech="typescript"] { --brand: #3178c6; }
.tech-logos__item[data-tech="react"] { --brand: #149eca; }
.tech-logos__item[data-tech="nextdotjs"] { --brand: #000000; }
.tech-logos__item[data-tech="nodedotjs"] { --brand: #5fa04e; }
.tech-logos__item[data-tech="vite"] { --brand: #9135ff; }
.tech-logos__item[data-tech="figma"] { --brand: #f24e1e; }
.tech-logos__item[data-tech="github"] { --brand: #181717; }
.tech-logos__item[data-tech="cloudflare"] { --brand: #f38020; }
.tech-logos__item[data-tech="hostinger"] { --brand: #673de6; }

@media (max-width: 520px) {
  .tech-logos {
    padding: 28px 0;
  }

  .tech-logos__list {
    gap: 22px 8px;
  }

  .tech-logos__icon {
    width: 26px;
    height: 26px;
  }
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
}

.notice .icon {
  margin-top: 3px;
}

.notice--warning {
  border: 1px solid var(--c-warning-line);
  background: var(--c-warning-soft);
  color: #684600;
}

.badge {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge--warning {
  border: 1px solid var(--c-warning-line);
  background: var(--c-warning-soft);
  color: var(--c-warning);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.tag__swatch {
  flex: none;
  width: 36px;
  height: 12px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(15, 20, 48, 0.08);
}

.dialog {
  width: 100%;
  max-width: min(440px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--c-text);
}

.dialog::backdrop {
  background: rgba(15, 20, 48, 0.45);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: fade-in var(--dur) ease;
}

.dialog__panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--c-surface);
  box-shadow: var(--shadow-lg);
  animation: dialog-in var(--dur) var(--ease-out);
}

.dialog__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  color: var(--c-accent-strong);
}

.dialog__icon--danger {
  background: var(--c-danger-soft);
  color: var(--c-danger);
}

.dialog__icon .icon {
  width: 22px;
  height: 22px;
}

.dialog__title {
  margin-top: 16px;
  font-size: 1.25rem;
}

.dialog__message {
  margin-top: 8px;
  color: var(--c-muted);
}

.dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 480px) {
  .dialog__panel {
    padding: 24px 20px 20px;
  }

  .dialog__actions {
    flex-direction: column-reverse;
  }

  .dialog__actions .btn {
    width: 100%;
  }
}
.wizard {
  display: grid;
  grid-template-columns: 264px minmax(0, 720px);
  justify-content: center;
  align-items: start;
  gap: 48px;
  max-width: calc(1080px + var(--gutter) * 2);
  padding-block: 40px 72px;
}

.wizard__aside {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.wizard__main {
  min-width: 0;
}

.stepper__head {
  margin-bottom: 16px;
  padding: 18px 20px 20px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-xs);
}

.stepper__eyebrow {
  color: var(--c-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stepper__percent {
  margin: 4px 0 12px;
  color: var(--c-muted);
  font-size: 0.875rem;
}

.stepper__percent strong {
  margin-right: 4px;
  color: var(--c-ink);
  font-size: 1.75rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.stepper__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stepper__item {
  position: relative;
}

.stepper__item:not(:last-child)::after {
  position: absolute;
  top: 34px;
  bottom: -6px;
  left: 21px;
  width: 2px;
  border-radius: 2px;
  background: var(--c-line);
  content: "";
}

.stepper__item.is-done:not(:last-child)::after {
  background: rgba(17, 129, 63, 0.35);
}

.stepper__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--c-muted);
  font-size: 0.90625rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color var(--dur-fast) ease,
    color var(--dur-fast) ease;
}

a.stepper__link:hover {
  background: rgba(15, 20, 48, 0.045);
  color: var(--c-ink);
}

.stepper__marker {
  position: relative;
  z-index: 1;
  display: grid;
  flex: none;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--c-line-strong);
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stepper__label {
  padding-top: 1px;
  line-height: 1.45;
}

.stepper__marker .icon {
  width: 12px;
  height: 12px;
  stroke-width: 3.2;
}

.stepper__item.is-done .stepper__marker {
  border-color: var(--c-accent-strong);
  background: var(--c-accent-strong);
  color: #fff;
}

.stepper__item.is-current .stepper__link {
  border-color: var(--c-line);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  color: var(--c-ink);
  font-weight: 600;
}

.stepper__item.is-current .stepper__marker {
  border-color: var(--c-navy);
  background: var(--c-navy);
  box-shadow: 0 0 0 4px rgba(19, 24, 54, 0.1);
  color: #fff;
}

.stepper__item.is-pending .stepper__marker {
  border-color: var(--c-warning-line);
  background: var(--c-warning-soft);
  color: var(--c-warning);
}

.stepper__item.is-locked .stepper__link {
  color: #a3aabc;
  cursor: default;
}

.stepper__note {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 0 10px;
  color: var(--c-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.stepper__note .icon {
  margin-top: 2px;
  color: var(--c-accent-strong);
}

.step-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
}

.step-card__header {
  padding: 36px 40px 0;
}

.step-card__eyebrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--c-accent-strong);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-card__of {
  color: var(--c-muted);
}

.step-card__percent {
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.step-card__title {
  margin-top: 10px;
  font-size: clamp(1.625rem, 1.25rem + 1.1vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  outline: none;
}

.step-card__desc {
  max-width: 58ch;
  margin-top: 10px;
  color: var(--c-muted);
}

.step-card__legend {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  color: var(--c-subtle);
  font-size: 0.8125rem;
}

.step-card__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  padding: 28px 40px 0;
}

.form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 40px 20px;
  padding: 12px 14px;
  border: 1px solid rgba(194, 55, 47, 0.2);
  border-radius: var(--radius-md);
  background: var(--c-danger-soft);
  color: var(--c-danger);
  font-size: 0.90625rem;
  font-weight: 500;
  animation: shake 360ms var(--ease-out);
}

.form-alert[hidden] {
  display: none;
}

.step-card__nav {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 40px;
  border-top: 1px solid var(--c-line);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn--nav {
  min-width: 172px;
}

@media (max-width: 1023px) {
  .wizard {
    grid-template-columns: minmax(0, 720px);
    gap: 0;
    padding-block: 24px 48px;
  }

  .wizard__aside {
    display: none;
  }
}

@media (max-width: 640px) {
  body[data-screen="wizard"],
  body[data-screen="wizard"] .main {
    background: var(--c-surface);
  }

  .wizard {
    padding: 0;
  }

  .step-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .step-card__header {
    padding: 24px 20px 0;
  }

  .step-card__fields {
    grid-template-columns: 1fr;
    padding: 24px 20px 0;
  }

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

  .step-card__nav {
    gap: 8px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-radius: 0;
    box-shadow: 0 -8px 24px -16px rgba(15, 20, 48, 0.18);
  }

  .step-card__nav .btn--ghost {
    padding: 0 14px;
  }

  .btn--nav {
    flex: 1;
    min-width: 0;
  }
}
.page-head {
  padding: 48px 0 28px;
}

.page-head__title {
  margin-top: 10px;
  font-size: clamp(1.875rem, 1.3rem + 1.8vw, 2.625rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
  outline: none;
}

.page-head__lead {
  max-width: 60ch;
  margin-top: 12px;
  color: var(--c-muted);
  font-size: 1.0625rem;
}

.review-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}

.review-section {
  padding: 28px 32px;
}

.review-section + .review-section {
  border-top: 1px solid var(--c-line);
}

.review-section.is-pending {
  box-shadow: inset 3px 0 0 #e7b53c;
}

.review-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-section__num {
  display: grid;
  flex: none;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--c-accent-soft);
  color: var(--c-accent-strong);
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.review-section__title {
  min-width: 0;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
}

.review-section__edit {
  margin-left: auto;
}

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

.review-item {
  min-width: 0;
}

.review-item--wide {
  grid-column: 1 / -1;
}

.review-item dt {
  color: var(--c-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-item dd {
  margin: 6px 0 0;
  color: var(--c-ink);
  font-size: 0.96875rem;
  overflow-wrap: anywhere;
}

.review-text {
  color: var(--c-text);
  white-space: pre-line;
}

.review-empty {
  color: var(--c-subtle);
  font-style: italic;
}

.review-missing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-danger);
  font-weight: 500;
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 28px 0 64px;
}

.review-footer__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 46ch;
  color: var(--c-muted);
  font-size: 0.90625rem;
}

.review-footer__note .icon {
  margin-top: 3px;
  color: var(--c-accent-strong);
}

.review-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 640px) {
  .page-head {
    padding: 32px 0 20px;
  }

  .review-card {
    border-radius: var(--radius-lg);
  }

  .review-section {
    padding: 22px 18px;
  }

  .review-section__head {
    flex-wrap: wrap;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .review-footer__actions {
    flex-direction: column-reverse;
    width: 100%;
  }

  .review-footer__actions .btn {
    width: 100%;
  }
}
.done__hero {
  padding: 56px 0 32px;
  text-align: center;
}

.done__hero .page-head__lead {
  margin-inline: auto;
}

.done__badge {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--c-accent-strong);
  box-shadow:
    0 0 0 8px var(--c-accent-soft),
    0 14px 30px -12px rgba(17, 129, 63, 0.65);
  color: #fff;
  animation: pop-in 520ms var(--ease-out) both;
}

.done__badge .icon {
  width: 30px;
  height: 30px;
  stroke-width: 3;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: draw-check 420ms 260ms var(--ease-out) forwards;
}

.done-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
}

.file-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-surface-muted);
}

.file-card__icon {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 48px;
  height: 56px;
  border-radius: 10px;
  background: #fdecec;
  color: #b8322b;
}

.file-card__icon .icon {
  width: 22px;
  height: 22px;
}

.file-card__icon b {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.file-card__info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.file-card__name {
  color: var(--c-ink);
  font-size: 0.96875rem;
  overflow-wrap: anywhere;
}

.file-card__meta {
  color: var(--c-muted);
  font-size: 0.8125rem;
}

.done-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.done-actions .btn:disabled {
  cursor: wait;
  opacity: 0.52;
  filter: saturate(0.72);
  pointer-events: none;
}

.done-status {
  margin-top: 12px;
  color: var(--c-accent-strong);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.done-status:empty {
  margin: 0;
}

.delivery-note {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}

.delivery-note__item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.delivery-note__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--c-line-strong);
  border-radius: 50%;
  background: var(--c-surface-muted);
  color: var(--c-muted);
}

.delivery-note__icon .icon {
  width: 15px;
  height: 15px;
}

.delivery-note__item > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.delivery-note__item strong {
  color: var(--c-ink);
  font-size: 0.875rem;
  font-weight: 600;
}

.delivery-note__item span {
  color: var(--c-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.done__secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 8px;
}

.done .tech-logos {
  margin-top: 36px;
  padding-bottom: 56px;
  border-top: 1px solid var(--c-line);
}

@media (max-width: 640px) {
  .done__hero {
    padding: 36px 0 24px;
  }

  .done-card {
    padding: 18px;
  }

  .done__secondary .btn {
    flex: 1 1 100%;
  }
}
.enter-forward {
  animation: enter-forward var(--dur-slow) var(--ease-out) both;
}

.enter-back {
  animation: enter-back var(--dur-slow) var(--ease-out) both;
}

@keyframes enter-forward {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes enter-back {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

@keyframes pop {
  50% {
    transform: scale(1.12);
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes float {
  50% {
    transform: translateY(-6px);
  }
}

@keyframes shake {
  20%,
  60% {
    transform: translateX(-4px);
  }
  40%,
  80% {
    transform: translateX(4px);
  }
}

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

html {
  color-scheme: dark;
  background: var(--c-bg);
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(38rem 38rem at var(--pointer-x) var(--pointer-y), rgba(117, 2, 11, 0.12), transparent 68%),
    var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-weight: 360;
  letter-spacing: -0.02em;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url("/images/forged-carbon.jpg");
  background-size: 720px auto;
  background-position: center top;
  opacity: 0.035;
  mix-blend-mode: screen;
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(255,255,255,.018) 50%, transparent 100%),
    radial-gradient(70% 40% at 50% 0%, rgba(255,255,255,.025), transparent 75%);
  content: "";
}

::selection { background: var(--c-accent); color: #fff; }

h1, h2, h3 {
  color: var(--c-ink);
  font-family: var(--font-heading);
  font-synthesis: none;
  font-weight: 200;
  letter-spacing: -0.055em;
}

button, input, select, textarea { font-family: var(--font-sans); }

:focus-visible { outline: var(--outline-focus); outline-offset: 4px; }

.skip-link {
  border: 1px solid var(--c-line-strong);
  background: var(--c-offwhite);
  color: #111;
  border-radius: 0;
}

.eyebrow,
.hub-kicker {
  color: var(--c-accent-strong);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--c-line);
  background: rgba(12,12,12,.82);
  background: color-mix(in srgb, #0c0c0c 82%, transparent);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.header::before {
  position: absolute;
  right: var(--gutter);
  bottom: -1px;
  left: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,27,40,.42), transparent 70%);
  opacity: .35;
  content: "";
}

.header__inner {
  height: var(--header-h);
  padding-block: 0;
}

.brand {
  gap: 14px;
  color: var(--c-offwhite);
  text-decoration: none;
}

.brand__mark {
  width: 72px;
  height: 34px;
  flex: none;
  overflow: visible;
  fill: var(--c-offwhite);
}

.brand__letters text {
  fill: var(--c-offwhite);
  font-family: var(--font-sans);
  font-size: 11.6px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__divider {
  width: 1px;
  height: 20px;
  background: var(--c-line-strong);
}

.brand__product {
  padding: 0;
  border: 0;
  color: var(--c-muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand:hover .brand__mark { transform: none; }

.header__aside { gap: 16px; color: var(--c-muted); }
.header__site-link,
.header__counter,
.save-status,
.header__meta {
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.header__site-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease-out);
}
.header__site-link:hover { color: var(--c-offwhite); }
.header__site-link .icon { width: 13px; height: 13px; }

.save-status { gap: 8px; }
.save-status .icon,
.header__meta .icon { color: var(--c-accent-strong); }
.header__counter {
  display: inline-flex;
  min-width: auto;
  padding: 6px 9px;
  border: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
  color: var(--c-offwhite);
  font-variant-numeric: tabular-nums;
}

.progress--header {
  bottom: -1px;
  height: 2px;
  background: transparent;
}
.progress--header .progress__bar,
.progress__bar {
  background: linear-gradient(90deg, #6f050c, var(--c-accent-strong));
  box-shadow: 0 0 24px rgba(224,27,40,.45);
}

.footer {
  border-top: 1px solid var(--c-line);
  background: #090909;
}
.footer__inner {
  min-height: 110px;
  padding-block: 28px;
  color: var(--c-subtle);
  font-size: .74rem;
  letter-spacing: .04em;
}
.footer__brand { gap: 12px; color: var(--c-offwhite); font-size: .68rem; font-weight: 650; letter-spacing: .17em; }
.footer__brand i { color: var(--c-accent-strong); font-style: normal; }
.footer__mark { width: 54px; height: 26px; fill: var(--c-offwhite); }
.footer__mark .brand__letters text { fill: var(--c-offwhite); font-family: var(--font-sans); font-size: 11.6px; font-weight: 700; }
.footer__note { color: var(--c-muted); }
.footer__links { gap: 18px; text-transform: uppercase; letter-spacing: .1em; }
.footer__links a { color: var(--c-muted); }
.footer__links a:hover { color: var(--c-offwhite); text-decoration: none; }

.btn {
  position: relative;
  min-height: 48px;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid var(--c-line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--c-offwhite);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 70%);
  transform: translateX(-102%);
  transition: transform .55s var(--ease-out);
  content: "";
}

@media (hover:hover) and (pointer:fine) {
  .btn:hover { transform: translateY(-1px); border-color: rgba(242,241,237,.48); }
  .btn:hover::before { transform: translateX(0); }
}

.btn:active { transform: translateY(0) scale(.99); }
.btn--lg { min-height: 54px; padding-inline: 24px; }
.btn--primary {
  border-color: #e71f2d;
  background: linear-gradient(135deg, #b90915 0%, #e51e2b 58%, #9f0710 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 14px 44px rgba(143,0,9,.16);
  color: #fff;
}
.btn--primary:hover { border-color: #ff5963; background-color: var(--c-accent); }
.btn--secondary,
.btn--ghost { background: rgba(255,255,255,.018); color: var(--c-text); }
.btn--whatsapp { border-color: rgba(37,211,102,.55); background: rgba(37,211,102,.12); color: #79f3a6; }
.btn--whatsapp:hover { background: rgba(37,211,102,.19); border-color: #25d366; color: #adffc9; }
.btn--danger { border-color: rgba(255,79,88,.45); background: rgba(255,79,88,.08); color: #ff9096; }
.btn--text,
.btn--link {
  min-height: 42px;
  padding-inline: 2px;
  border: 0;
  background: transparent;
  color: var(--c-muted);
  overflow: visible;
}
.btn--text::before,
.btn--link::before { display: none; }
.btn--text:hover,
.btn--link:hover { color: var(--c-offwhite); transform: none; }
.btn--danger-text { color: #b76a6f; }
.btn--block { width: 100%; }
.screen--home { background: #0c0c0c; }

body[data-screen="wizard"],
body[data-screen="review"],
body[data-screen="done"] { background: #0b0b0b; }

.wizard {
  grid-template-columns: 250px minmax(0, 810px);
  gap: clamp(34px, 5vw, 76px);
  max-width: calc(1220px + var(--gutter) * 2);
  padding-block: clamp(40px, 5vw, 72px) clamp(64px, 8vw, 110px);
}
.wizard__aside { top: calc(var(--header-h) + 34px); }

.stepper__head {
  margin-bottom: 16px;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.stepper__eyebrow { color: var(--c-subtle); font-size: .62rem; letter-spacing: .18em; }
.stepper__percent { margin: 8px 0 13px; color: var(--c-muted); font-size: .77rem; }
.stepper__percent strong { color: var(--c-offwhite); font-family: var(--font-heading); font-size: 2.2rem; font-weight: 200; }
.progress { overflow: hidden; height: 2px; border-radius: 0; background: rgba(255,255,255,.08); }
.progress--thin { height: 2px; }

.stepper__item:not(:last-child)::after {
  left: 11px;
  top: 31px;
  bottom: -7px;
  width: 1px;
  background: var(--c-line);
}
.stepper__item.is-done:not(:last-child)::after { background: rgba(224,27,40,.28); }
.stepper__link {
  gap: 13px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  color: #6f6c67;
  font-size: .79rem;
  font-weight: 450;
  line-height: 1.3;
}
a.stepper__link:hover { background: transparent; color: var(--c-offwhite); }
.stepper__marker {
  width: 23px;
  height: 23px;
  border: 1px solid var(--c-line-strong);
  border-radius: 0;
  background: #0b0b0b;
  color: var(--c-subtle);
  font-size: .58rem;
}
.stepper__item.is-current .stepper__link { border: 0; background: transparent; box-shadow: none; color: var(--c-offwhite); font-weight: 530; }
.stepper__item.is-current .stepper__marker { border-color: var(--c-accent); background: var(--c-accent); box-shadow: 0 0 24px rgba(224,27,40,.2); color: #fff; }
.stepper__item.is-done .stepper__marker { border-color: rgba(224,27,40,.6); background: rgba(224,27,40,.14); color: #ff6c76; }
.stepper__item.is-pending .stepper__marker { border-color: rgba(217,179,95,.5); background: rgba(217,179,95,.08); color: var(--c-warning); }
.stepper__item.is-locked .stepper__link { color: #3e3c39; }
.stepper__note {
  gap: 9px;
  margin-top: 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--c-line);
  color: #66625d;
  font-size: .71rem;
}
.stepper__note .icon { color: #8c151d; }

.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.018), rgba(255,255,255,.004));
  box-shadow: 0 34px 100px rgba(0,0,0,.22);
}
.step-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 1px;
  background: var(--c-accent);
  box-shadow: 0 0 30px rgba(224,27,40,.55);
  content: "";
}
.step-card__header { padding: clamp(30px, 5vw, 58px) clamp(26px, 5vw, 58px) 0; }
.step-card__eyebrow { color: var(--c-accent-strong); font-size: .65rem; letter-spacing: .18em; }
.step-card__of,
.step-card__percent { color: var(--c-subtle); }
.step-card__title {
  max-width: 670px;
  margin-top: 18px;
  color: var(--c-offwhite);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 200;
  line-height: .98;
  letter-spacing: -.055em;
}
.step-card__desc { max-width: 650px; margin-top: 18px; color: var(--c-muted); font-size: .95rem; line-height: 1.55; }
.step-card__legend { margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--c-line); color: var(--c-subtle); font-size: .7rem; }
.step-card__fields { padding: clamp(28px, 4vw, 46px) clamp(26px, 5vw, 58px) 12px; }
.step-card__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(26px, 5vw, 58px) clamp(28px, 4vw, 42px);
  border-top: 1px solid var(--c-line);
  background: rgba(255,255,255,.008);
}
.btn--nav { min-width: 160px; }

.field-slot { padding: 0; margin-bottom: 34px; border: 0; }
.field-slot--half { width: calc(50% - 10px); }
.field-slot__inner { height: 100%; }
.field-group-title {
  width: 100%;
  margin: 8px 0 24px;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
  color: var(--c-offwhite);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 200;
  letter-spacing: -.04em;
}
.field__label {
  color: var(--c-offwhite);
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.012em;
}
.field__required { color: var(--c-accent-strong); }
.field__hint { margin-top: 6px; color: var(--c-subtle); font-size: .72rem; line-height: 1.5; }
.input {
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--c-line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--c-offwhite);
  font-size: 1rem;
  font-weight: 380;
  outline: 0;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.input::placeholder { color: #55514c; }
.input:hover { border-color: rgba(242,241,237,.34); }
.input:focus { border-color: var(--c-accent-strong); box-shadow: none; background: linear-gradient(180deg, transparent, rgba(224,27,40,.025)); }
.input--textarea { min-height: 112px; padding-top: 14px; resize: none; }
.select { margin-top: 12px; }
.select__chevron { right: 2px; color: var(--c-muted); }

.choices { margin-top: 16px; gap: 10px; }
.choices--cards,
.choices--palette { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice { border-radius: 0; }
.choice__control {
  min-height: 50px;
  border: 1px solid var(--c-line);
  border-radius: 0;
  background: rgba(255,255,255,.012);
  box-shadow: none;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.choice__label { color: #d2cfca; font-size: .83rem; font-weight: 470; }
.choice__desc { color: var(--c-subtle); font-size: .7rem; line-height: 1.45; }
.choice__indicator {
  border: 1px solid rgba(242,241,237,.22);
  border-radius: 0;
  background: transparent;
  color: transparent;
}
.choice__input:checked + .choice__control {
  border-color: rgba(224,27,40,.66);
  background: linear-gradient(135deg, rgba(224,27,40,.12), rgba(224,27,40,.025));
  box-shadow: inset 0 0 0 1px rgba(224,27,40,.08);
}
.choice__input:checked + .choice__control .choice__indicator { border-color: var(--c-accent); background: var(--c-accent); color: #fff; }
.choice__input:checked + .choice__control .choice__label { color: var(--c-offwhite); }
.choice__input:focus-visible + .choice__control { outline: 1px dashed rgba(242,241,237,.7); outline-offset: 3px; box-shadow: none; }
@media (hover:hover) and (pointer:fine) {
  .choice:hover .choice__control { border-color: rgba(242,241,237,.34); transform: translateY(-1px); }
}
.choice--palette .choice__control { overflow: hidden; }
.palette__swatch { border-radius: 0; background: #111; }
.palette__swatch svg { display: block; }
.palette__swatch--empty { color: var(--c-muted); }
.field__error { color: #ff7c84; font-size: .72rem; }
.field.has-error .input { border-color: #ff4f58; box-shadow: none; }
.form-alert,
.notice {
  margin-inline: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(255,79,88,.28);
  border-radius: 0;
  background: rgba(255,79,88,.07);
  color: #ff9ca1;
}
.notice--warning { border-color: rgba(217,179,95,.28); background: rgba(217,179,95,.07); color: #ddc58b; }
.review,
.done { padding-block: clamp(54px, 7vw, 92px) clamp(74px, 9vw, 120px); }
.page-head,
.done__hero { max-width: 820px; margin-bottom: 46px; }
.page-head .eyebrow,
.done__hero .eyebrow { margin-bottom: 14px; }
.page-head__title {
  color: var(--c-offwhite);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 200;
  line-height: .98;
  letter-spacing: -.055em;
}
.page-head__lead { max-width: 650px; margin-top: 18px; color: var(--c-muted); font-size: .96rem; line-height: 1.6; }
.page-head__lead strong { color: var(--c-offwhite); font-weight: 520; }
.review-card {
  border: 1px solid var(--c-line);
  border-radius: 0;
  background: rgba(255,255,255,.012);
  box-shadow: var(--shadow-md);
}
.review-section { padding: 34px clamp(24px, 5vw, 48px); border-bottom: 1px solid var(--c-line); }
.review-section:last-child { border-bottom: 0; }
.review-section__head { gap: 14px; }
.review-section__num { color: var(--c-accent-strong); font-size: .62rem; font-weight: 700; letter-spacing: .15em; }
.review-section__title { color: var(--c-offwhite); font-family: var(--font-heading); font-size: 1.65rem; font-weight: 200; letter-spacing: -.035em; }
.review-section__edit { margin-left: auto; min-height: 32px; color: var(--c-muted); font-size: .62rem; }
.review-list { margin-top: 28px; gap: 0 32px; }
.review-item { padding: 17px 0; border-top: 1px solid rgba(242,241,237,.075); }
.review-item dt { color: var(--c-subtle); font-size: .61rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.review-item dd { margin-top: 7px; color: #d4d0ca; font-size: .86rem; line-height: 1.5; }
.review-missing { color: #5f5b56; }
.review-text { color: #cac6c0; }
.tag { border: 1px solid var(--c-line); border-radius: 0; background: rgba(255,255,255,.025); color: var(--c-text); }
.badge { border-radius: 0; }
.review-footer {
  gap: 28px;
  margin-top: 24px;
  padding: 28px 0 0;
  border-top: 1px solid var(--c-line);
}
.review-footer__note { color: var(--c-muted); font-size: .77rem; }
.review-footer__note .icon { color: var(--c-accent-strong); }

.done__hero { position: relative; padding-left: 0; text-align: left; }
.done__badge {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 0 24px;
  place-items: center;
  border: 1px solid rgba(224,27,40,.55);
  border-radius: 0;
  background: rgba(224,27,40,.1);
  color: #ff626c;
}
.done__badge::after { display: none; }
.done-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--c-line);
  border-radius: 0;
  background: rgba(255,255,255,.012);
  box-shadow: var(--shadow-md);
}
.file-card {
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid var(--c-line);
  background: linear-gradient(100deg, rgba(224,27,40,.06), transparent 60%);
}
.file-card__icon {
  width: 62px;
  height: 72px;
  border: 1px solid rgba(224,27,40,.38);
  border-radius: 0;
  background: rgba(224,27,40,.09);
  color: #ff6c76;
}
.file-card__name { color: var(--c-offwhite); font-family: var(--font-heading); font-size: 1.4rem; font-weight: 200; letter-spacing: -.03em; }
.file-card__meta { color: var(--c-subtle); font-size: .72rem; }
.done-actions { padding: 28px clamp(24px, 4vw, 38px) 12px; }
.done-status { min-height: 22px; padding-inline: clamp(24px, 4vw, 38px); color: #94cba5; font-size: .75rem; }
.delivery-note {
  margin: 18px clamp(24px, 4vw, 38px) 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--c-line);
}
.delivery-note__icon {
  border-color: var(--c-line-strong);
  border-radius: 0;
  background: #111;
  color: var(--c-subtle);
}
.delivery-note__item:first-child .delivery-note__icon {
  border-color: rgba(37,211,102,.34);
  background: rgba(37,211,102,.07);
  color: #72e99d;
}
.delivery-note__item strong { color: #dedad4; font-weight: 520; }
.delivery-note__item span { color: #77726c; }
.done__secondary { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--c-line); }

.tech-logos {
  margin-top: 66px;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
}
.tech-logos__title { color: var(--c-subtle); font-size: .61rem; letter-spacing: .15em; }
.tech-logos__item { border: 0; background: transparent; color: var(--c-subtle); }
.tech-logos__icon { filter: grayscale(1) brightness(1.8); opacity: .55; }
.tech-logos__name { color: var(--c-subtle); }

.dialog { background: rgba(0,0,0,.78); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.dialog__panel {
  border: 1px solid var(--c-line-strong);
  border-radius: 0;
  background: #111;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.dialog__icon { border-radius: 0; background: rgba(224,27,40,.08); color: #ff5963; }
.dialog__title { color: var(--c-offwhite); font-family: var(--font-heading); font-size: 1.8rem; font-weight: 200; }
.dialog__message { color: var(--c-muted); }
.dialog__actions { border-top-color: var(--c-line); }

[data-reveal] { will-change: transform, opacity; }
.enter-forward,
.enter-back { animation-duration: .55s; animation-timing-function: var(--ease-out); }
@media (max-width: 1023px) {
  .header__counter { display: inline-flex; }

  .wizard { grid-template-columns: 210px minmax(0, 1fr); gap: 34px; }
}

@media (max-width: 820px) {
  body { background: #0c0c0c; }
  .header__site-link span { display: none; }

  .wizard { display: block; padding-top: 26px; }
  .wizard__aside { display: none; }
  .step-card { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
  .header::before { left: 20px; right: 20px; }
  .brand { gap: 10px; }
  .brand__mark { width: 62px; height: 30px; }
  .brand__divider { height: 16px; }
  .brand__product { font-size: .58rem; letter-spacing: .15em; }
  .save-status span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .header__aside { gap: 9px; }
  .header__counter { font-size: .58rem; letter-spacing: .08em; }
  .header__site-link { font-size: 0; }
  .header__site-link .icon { width: 15px; height: 15px; }

  .hub-kicker { font-size: .62rem; }

  .wizard { padding-inline: 16px; padding-bottom: 68px; }
  .step-card__header { padding: 30px 22px 0; }
  .step-card__title { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .step-card__desc { font-size: .88rem; }
  .step-card__fields { padding: 26px 22px 8px; }
  .field-slot { margin-bottom: 30px; }
  .field-slot--half { width: 100%; }
  .choices--cards,
  .choices--palette { grid-template-columns: 1fr; }
  .choice__control { min-height: 52px; }
  .step-card__nav { align-items: stretch; flex-direction: column-reverse; padding: 22px; }
  .step-card__nav .btn { width: 100%; justify-content: space-between; }
  .form-alert { margin-inline: 22px; }

  .review,
  .done { padding-top: 44px; }
  .page-head,
  .done__hero { margin-bottom: 34px; }
  .page-head__title { font-size: clamp(3rem, 13vw, 4.8rem); }
  .review-section { padding: 28px 22px; }
  .review-section__head { align-items: flex-start; flex-wrap: wrap; }
  .review-section__edit { margin-left: 0; }
  .review-list { grid-template-columns: 1fr; }
  .review-item--wide { grid-column: auto; }
  .review-footer { align-items: stretch; flex-direction: column; }
  .review-footer__actions { width: 100%; flex-direction: column-reverse; }
  .review-footer__actions .btn { width: 100%; justify-content: space-between; }
  .file-card { align-items: flex-start; }
  .file-card__name { overflow-wrap: anywhere; }
  .done__secondary { align-items: stretch; flex-direction: column; }
  .done__secondary .btn { width: 100%; }

  .footer__inner { align-items: flex-start; flex-direction: column; }
  .footer__note { order: initial; width: auto; }
}

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

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

body[data-screen="wizard"] .header,
body[data-screen="review"] .header,
body[data-screen="done"] .header {
  border-bottom-color: var(--c-line);
  background: rgba(12,12,12,.86);
  background: color-mix(in srgb, #0c0c0c 86%, transparent);
}

.field-slot--half { width: auto; }

@media (max-width: 640px) {
  .brand__product { display: inline-block; }
  body[data-screen="wizard"],
  body[data-screen="wizard"] .main { background: #0b0b0b; }
  .step-card { border: 1px solid var(--c-line); background: linear-gradient(145deg, rgba(255,255,255,.018), rgba(255,255,255,.004)); box-shadow: 0 28px 80px rgba(0,0,0,.22); }
}
@property --fx-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --header-h: 76px;
  --fx-red: #f52331;
  --fx-red-deep: #5e050b;
  --fx-gold: #c7a269;
}

body {
  background:
    radial-gradient(32rem 32rem at var(--pointer-x) var(--pointer-y), rgba(129, 3, 12, 0.105), transparent 70%),
    #0b0b0b;
}

.header__inner { height: var(--header-h); }
.footer__inner { min-height: 86px; padding-block: 22px; }

.hub-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 44px;
  height: 44px;
  pointer-events: none;
  opacity: 0;
}
.hub-cursor__ring,
.hub-cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .42s var(--ease-out), height .42s var(--ease-out), opacity .42s var(--ease-out), background-color .42s var(--ease-out), border-color .42s var(--ease-out);
}
.hub-cursor__ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(242,241,237,.2);
  background: rgba(255,255,255,.018);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.hub-cursor__dot {
  width: 3px;
  height: 3px;
  background: var(--c-accent-strong);
  box-shadow: 0 0 12px rgba(245,35,49,.75);
}
.hub-cursor.is-active .hub-cursor__ring {
  width: 42px;
  height: 42px;
  border-color: rgba(245,35,49,.32);
  background: rgba(245,35,49,.06);
}
.hub-cursor.is-active .hub-cursor__dot { width: 5px; height: 5px; }

.btn--fx { isolation: isolate; }
.btn--fx::after {
  position: absolute;
  inset: -1px;
  z-index: -2;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--fx-angle), transparent 0 36%, rgba(255,255,255,.82) 48%, transparent 60% 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .32;
  animation: fx-edge-spin 5.8s linear infinite;
  content: "";
}
.btn--fx .icon { transition: transform .45s var(--ease-out); }
.btn--fx:hover .icon { transform: translateX(4px); }

@keyframes fx-edge-spin { to { --fx-angle: 360deg; } }

.home-v4 { position: relative; background: #0b0b0b; }

.brief-hero {
  position: relative;
  height: clamp(620px, 76svh, 820px);
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid rgba(242,241,237,.1);
  background: #0b0b0b;
  isolation: isolate;
}

.brief-hero__texture,
.brief-hero__mesh,
.brief-hero__flare,
.brief-hero__scan {
  position: absolute;
  pointer-events: none;
}

.brief-hero__texture {
  inset: 0;
  z-index: -5;
  background-image:
    linear-gradient(90deg, rgba(4,4,4,.98) 0%, rgba(8,8,8,.82) 43%, rgba(8,8,8,.56) 69%, rgba(4,4,4,.92) 100%),
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.72)),
    url("/images/textura-fundo.webp");
  background-size: cover, cover, min(54vw, 820px) auto;
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: center, center, 88% center;
  opacity: .68;
  filter: saturate(.74) contrast(1.05);
  transform: scale(1.025);
}

.brief-hero__mesh {
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 60% 48%, #000 5%, transparent 82%);
  mask-image: radial-gradient(ellipse 80% 75% at 60% 48%, #000 5%, transparent 82%);
  animation: mesh-drift 18s linear infinite;
}

.brief-hero__flare { z-index: -3; border-radius: 50%; filter: blur(2px); }
.brief-hero__flare--one {
  right: -10%;
  top: 5%;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(108,4,12,.42), rgba(68,2,7,.14) 42%, transparent 69%);
  animation: flare-breathe 7.5s ease-in-out infinite alternate;
}
.brief-hero__flare--two {
  right: 18%;
  bottom: -44%;
  width: min(36vw, 540px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(199,162,105,.075), transparent 68%);
  animation: flare-breathe 10s 1.2s ease-in-out infinite alternate-reverse;
}

.brief-hero__scan {
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 1px;
  background: linear-gradient(transparent 2%, rgba(245,35,49,.05) 25%, rgba(245,35,49,.52) 51%, rgba(245,35,49,.05) 76%, transparent 98%);
  box-shadow: 0 0 48px rgba(245,35,49,.13);
  animation: scan-x 8.5s ease-in-out infinite alternate;
}

.brief-hero::before,
.brief-hero::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}
.brief-hero::before {
  top: 0;
  bottom: 0;
  left: var(--gutter);
  width: 1px;
  background: linear-gradient(transparent 4%, rgba(242,241,237,.1) 18%, rgba(242,241,237,.1) 82%, transparent 96%);
}
.brief-hero::after {
  right: var(--gutter);
  bottom: 26%;
  width: min(26vw, 330px);
  height: 1px;
  background: linear-gradient(90deg, rgba(245,35,49,.7), rgba(245,35,49,.08), transparent);
  box-shadow: 0 0 18px rgba(245,35,49,.2);
}

.brief-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr auto;
  padding-top: 22px;
  padding-bottom: 22px;
}

.brief-hero__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #65615c;
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.brief-hero__topline span:last-child { color: #504c48; }

.brief-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 410px);
  align-items: center;
  gap: clamp(32px, 7vw, 112px);
  min-height: 0;
}

.brief-hero__copy {
  max-width: 760px;
  padding-block: 24px;
}

.brief-hero__title {
  margin-top: 14px;
  color: var(--c-offwhite);
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 7.35vw, 7.8rem);
  font-weight: 200;
  line-height: .84;
  letter-spacing: -.064em;
}
.brief-hero__title-line {
  display: block;
  overflow: hidden;
  padding: .05em .06em .09em 0;
  margin-bottom: -.09em;
}
.brief-hero__title-line > span { display: inline-block; will-change: transform; }
.brief-hero__title em { color: var(--c-accent-strong); font-weight: 200; }

.brief-hero__lead {
  max-width: 590px;
  margin-top: 24px;
  color: #a19c96;
  font-size: clamp(.94rem, 1.05vw, 1.08rem);
  font-weight: 350;
  line-height: 1.58;
  letter-spacing: -.018em;
}

.brief-resume {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #8f8a84;
  font-size: .75rem;
}
.brief-resume .icon { color: var(--c-accent-strong); }
.brief-resume strong { color: #d8d4ce; font-weight: 520; }

.brief-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 28px;
}
.brief-link .icon { width: 12px; height: 12px; transition: transform .4s var(--ease-out); }
.brief-link:hover .icon { transform: translateY(3px); }

.brief-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  transform-style: preserve-3d;
  will-change: transform;
}
.brief-hero__visual::before {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,2,10,.24), transparent 69%);
  filter: blur(18px);
  content: "";
}

.brief-orbit {
  position: relative;
  width: min(31vw, 350px);
  aspect-ratio: 1;
  border: 1px solid rgba(242,241,237,.09);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.brief-orbit::before,
.brief-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}
.brief-orbit::before {
  inset: 12%;
  border: 1px dashed rgba(242,241,237,.09);
}
.brief-orbit::after {
  inset: 38%;
  border: 1px solid rgba(245,35,49,.28);
  box-shadow: 0 0 40px rgba(245,35,49,.12), inset 0 0 30px rgba(245,35,49,.05);
}
.brief-orbit__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.brief-orbit__ring--1 { inset: 21%; border: 1px solid rgba(242,241,237,.08); }
.brief-orbit__ring--2 { inset: 5%; border-top: 1px solid rgba(245,35,49,.68); border-right: 1px solid transparent; border-bottom: 1px solid rgba(242,241,237,.06); border-left: 1px solid transparent; }
.brief-orbit__ring--3 { inset: 29%; border-top: 1px solid rgba(199,162,105,.5); border-right: 1px solid transparent; border-bottom: 1px solid transparent; border-left: 1px solid rgba(199,162,105,.08); }
.brief-orbit__axis { position: absolute; top: 50%; left: 50%; background: rgba(242,241,237,.07); transform: translate(-50%,-50%); }
.brief-orbit__axis--x { width: 126%; height: 1px; }
.brief-orbit__axis--y { width: 1px; height: 126%; }
.brief-orbit__pulse { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--c-accent-strong); box-shadow: 0 0 0 4px rgba(245,35,49,.08), 0 0 20px rgba(245,35,49,.85); }
.brief-orbit__pulse--1 { top: 7.5%; left: 48.5%; animation: orbit-pulse 2.2s ease-in-out infinite; }
.brief-orbit__pulse--2 { right: 17.5%; bottom: 18%; animation: orbit-pulse 2.8s .7s ease-in-out infinite; }

.brief-orbit__core {
  position: absolute;
  inset: 38%;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
}
.brief-orbit__core span,
.brief-orbit__core small {
  display: block;
  color: #77716b;
  font-size: .5rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .2em;
}
.brief-orbit__core strong {
  display: block;
  margin: 5px 0 7px;
  color: var(--c-offwhite);
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 200;
  line-height: .85;
}
.brief-orbit__label {
  position: absolute;
  color: #5e5954;
  font-size: .49rem;
  font-weight: 650;
  letter-spacing: .19em;
}
.brief-orbit__label--a { top: 12%; right: -4%; }
.brief-orbit__label--b { bottom: 7%; left: 6%; }
.brief-orbit__label--c { top: 47%; left: -10%; color: #9c4a50; }

.brief-hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(242,241,237,.08);
}
.brief-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; color: #625e59; font-size: .56rem; font-weight: 620; letter-spacing: .14em; text-transform: uppercase; }
.brief-meta span { display: inline-flex; align-items: center; gap: 7px; }
.brief-meta b { color: #aaa49e; font-weight: 650; }

body[data-screen="wizard"] .main,
body[data-screen="review"] .main,
body[data-screen="done"] .main { position: relative; }
body[data-screen="wizard"] .main::before,
body[data-screen="review"] .main::before,
body[data-screen="done"] .main::before {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(34rem 34rem at var(--pointer-x) var(--pointer-y), rgba(102,3,10,.08), transparent 70%),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
  content: "";
}

.wizard {
  grid-template-columns: 215px minmax(0, 850px);
  gap: clamp(34px, 4vw, 58px);
  max-width: calc(1165px + var(--gutter) * 2);
  padding-block: 38px 72px;
}
.wizard__aside { top: calc(var(--header-h) + 28px); }
.stepper__head { padding-bottom: 18px; margin-bottom: 14px; }
.stepper__percent { margin-top: 5px; margin-bottom: 10px; }
.stepper__percent strong { font-size: 2rem; }
.stepper__link { padding-block: 7px; font-size: .74rem; }
.stepper__marker { width: 22px; height: 22px; font-size: .56rem; }
.stepper__item:not(:last-child)::after { left: 10px; top: 29px; }

.step-card {
  background:
    radial-gradient(520px circle at 92% 8%, rgba(107,3,10,.085), transparent 64%),
    linear-gradient(145deg, rgba(255,255,255,.017), rgba(255,255,255,.003));
  box-shadow: 0 30px 90px rgba(0,0,0,.26), inset 0 1px rgba(255,255,255,.025);
}
.step-card::after {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(225deg, rgba(245,35,49,.06), transparent 48%);
  clip-path: polygon(100% 0, 100% 100%, 99.3% 100%, 99.3% .7%, 0 .7%, 0 0);
  content: "";
}
.step-card__header { padding: 38px 46px 0; }
.step-card__title { margin-top: 14px; font-size: clamp(2.75rem, 4.3vw, 4.2rem); line-height: .96; }
.step-card__desc { margin-top: 14px; font-size: .87rem; }
.step-card__legend { margin-top: 16px; padding-top: 13px; }
.step-card__fields { padding: 30px 46px 8px; column-gap: 24px; }
.step-card__nav { padding: 22px 46px 28px; }
.field-slot { position: relative; margin-bottom: 28px; }
.field-slot::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--c-accent), rgba(245,35,49,.12), transparent 70%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease-out);
  content: "";
}
.field-slot:focus-within::after { transform: scaleX(1); }
.field-group-title { margin: 4px 0 20px; padding-top: 22px; font-size: 1.45rem; }
.input { min-height: 49px; margin-top: 9px; font-size: .93rem; }
.input--textarea { min-height: 100px; }
.choices { margin-top: 13px; gap: 8px; }
.choice__control {
  position: relative;
  overflow: hidden;
  min-height: 48px;
}
.choice__control::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.035) 48%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .7s var(--ease-out);
  content: "";
}
.choice:hover .choice__control::after { transform: translateX(110%); }
.choice__input:checked + .choice__control { box-shadow: inset 3px 0 0 rgba(245,35,49,.72); }

.review,
.done { padding-block: 48px 84px; }
.page-head,
.done__hero { margin-bottom: 38px; }
.review-section { margin-bottom: 14px; }
.done-card { max-width: 880px; }

@keyframes mesh-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 76px 76px, 76px 76px; }
}
@keyframes flare-breathe {
  from { transform: scale(.92) translate3d(-2%, 1%, 0); opacity: .7; }
  to { transform: scale(1.07) translate3d(2%, -1%, 0); opacity: 1; }
}
@keyframes scan-x {
  from { transform: translateX(-15vw); opacity: .45; }
  to { transform: translateX(25vw); opacity: .9; }
}
@keyframes orbit-pulse {
  0%,100% { transform: scale(.8); opacity: .45; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes status-pulse {
  0%,100% { opacity: .55; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 1023px) {
  .wizard {
    grid-template-columns: 190px minmax(0,1fr);
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .wizard {
    display: block;
    padding-top: 26px;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }

  .header__inner { height: var(--header-h); }
  .footer__inner { min-height: 80px; }
  .hub-cursor { display: none; }

  .wizard { padding: 0 14px 54px; }
  .step-card__header { padding: 26px 20px 0; }
  .step-card__title { margin-top: 13px; font-size: clamp(2.45rem, 11vw, 3.4rem); }
  .step-card__desc { font-size: .82rem; }
  .step-card__fields { padding: 22px 20px 4px; }
  .step-card__nav { padding: 18px 20px 22px; }
  .field-slot { margin-bottom: 24px; }
  .field-group-title { margin-bottom: 18px; padding-top: 18px; font-size: 1.32rem; }
  .input { min-height: 46px; }

  .footer__inner { gap: 10px; padding-block: 18px; }
  .footer__note { font-size: .68rem; line-height: 1.4; }
  .footer__links { gap: 14px; }
}
body[data-screen="wizard"] .step-card {
  background:
    radial-gradient(520px circle at 92% 8%, rgba(118,3,11,.08), transparent 66%),
    linear-gradient(145deg, rgba(255,255,255,.018), rgba(255,255,255,.004)),
    #0d0d0d;
}

.step-card__fields { row-gap: 0; }

.field-slot {
  margin-bottom: 26px;
}

.field {
  padding-bottom: 0;
}

.field-group-title {
  position: relative;
  margin: 6px 0 22px;
  padding: 24px 0 13px 18px;
  border-top: 1px solid rgba(242,241,237,.1);
  border-bottom: 1px solid rgba(242,241,237,.07);
  color: #d8d4cf;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 200;
  letter-spacing: -.04em;
  line-height: 1;
}

.field-group-title::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--c-accent-strong), rgba(245,35,49,0));
  box-shadow: 0 0 16px rgba(245,35,49,.28);
  content: "";
}

.field__label {
  margin-bottom: 0;
  color: #e9e6e1;
  font-size: .84rem;
  font-weight: 540;
  line-height: 1.45;
  letter-spacing: -.012em;
}

.field__hint {
  max-width: 62ch;
  margin: 7px 0 0;
  color: #706c66;
  font-size: .72rem;
  line-height: 1.55;
}

.input {
  width: 100%;
  min-height: 56px;
  margin-top: 11px;
  padding: 14px 15px;
  border: 1px solid rgba(242,241,237,.13);
  border-radius: 0;
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006)),
    #0f0f0f;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.015),
    0 12px 34px rgba(0,0,0,.08);
  color: var(--c-offwhite);
  caret-color: var(--c-accent-strong);
  font-size: .94rem;
  font-weight: 380;
  line-height: 1.45;
  transition:
    border-color var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

.input::placeholder {
  color: #5b5752;
  opacity: 1;
}

.input:hover {
  border-color: rgba(242,241,237,.26);
  background:
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.008)),
    #101010;
}

.input:focus {
  border-color: rgba(245,35,49,.72);
  outline: 0;
  background:
    linear-gradient(180deg, rgba(245,35,49,.035), rgba(255,255,255,.006)),
    #101010;
  box-shadow:
    inset 2px 0 0 rgba(245,35,49,.75),
    0 0 0 1px rgba(245,35,49,.08),
    0 14px 36px rgba(0,0,0,.12);
}

.input--textarea {
  min-height: 122px;
  padding: 15px 16px;
  overflow: hidden;
  line-height: 1.55;
  resize: none;
}

.field.has-error .input,
.field.has-error .select__trigger {
  border-color: rgba(255,79,88,.72);
  background:
    linear-gradient(180deg, rgba(255,79,88,.045), rgba(255,79,88,.012)),
    #100d0e;
  box-shadow:
    inset 2px 0 0 rgba(255,79,88,.72),
    0 0 0 1px rgba(255,79,88,.035);
}

.field.has-error .input:focus,
.field.has-error .select__trigger:focus-visible {
  border-color: #ff626c;
  box-shadow:
    inset 2px 0 0 #ff626c,
    0 0 0 2px rgba(255,79,88,.11);
}

.field__error {
  gap: 7px;
  margin-top: 8px;
  color: #ff7f87;
  font-size: .69rem;
  font-weight: 520;
  line-height: 1.45;
}

.field__error-icon {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  flex: none;
}

.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus,
.input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--c-offwhite) !important;
  caret-color: var(--c-offwhite);
  -webkit-box-shadow: 0 0 0 1000px #0f0f0f inset !important;
  box-shadow: 0 0 0 1000px #0f0f0f inset !important;
  border-color: rgba(242,241,237,.18) !important;
  transition: background-color 9999s ease-out 0s;
}

.select {
  position: relative;
  margin-top: 11px;
}

.select__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.select__trigger {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(242,241,237,.13);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006)),
    #0f0f0f;
  color: var(--c-offwhite);
  font-size: .94rem;
  font-weight: 390;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition:
    border-color var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.select__trigger:hover {
  border-color: rgba(242,241,237,.27);
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.008)),
    #101010;
}

.select__trigger:focus-visible,
.select.is-open .select__trigger {
  border-color: rgba(245,35,49,.72);
  outline: 0;
  background:
    linear-gradient(180deg, rgba(245,35,49,.035), rgba(255,255,255,.006)),
    #101010;
  box-shadow:
    inset 2px 0 0 rgba(245,35,49,.75),
    0 0 0 1px rgba(245,35,49,.08);
}

.select__trigger.is-placeholder .select__value {
  color: #5b5752;
}

.select__trigger .select__chevron {
  position: static;
  width: 15px;
  height: 15px;
  flex: none;
  color: #77716b;
  transform: none;
  transition: transform .32s var(--ease-out), color .32s var(--ease-out);
}

.select.is-open .select__trigger .select__chevron {
  color: #d8d4cf;
  transform: rotate(180deg);
}

.select__menu {
  position: relative;
  z-index: 20;
  margin-top: 7px;
  overflow: hidden;
  border: 1px solid rgba(242,241,237,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0)),
    #101010;
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
  animation: select-menu-in .24s var(--ease-out);
}

.select__menu[hidden] {
  display: none;
}

.select__list {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(242,241,237,.24) transparent;
}

.select__list::-webkit-scrollbar { width: 7px; }
.select__list::-webkit-scrollbar-track { background: transparent; }
.select__list::-webkit-scrollbar-thumb { background: rgba(242,241,237,.18); }

.select__option {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 13px;
  border: 0;
  border-bottom: 1px solid rgba(242,241,237,.065);
  background: transparent;
  color: #aaa59f;
  font-size: .79rem;
  font-weight: 430;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    padding-left var(--dur) var(--ease-out);
}

.select__option:last-child { border-bottom: 0; }

.select__option:hover,
.select__option:focus-visible {
  outline: 0;
  background: rgba(255,255,255,.035);
  color: var(--c-offwhite);
  padding-left: 17px;
}

.select__option[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(245,35,49,.105), rgba(245,35,49,.015));
  color: var(--c-offwhite);
}

.select__option[aria-selected="true"]::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 2px;
  background: var(--c-accent-strong);
  box-shadow: 0 0 12px rgba(245,35,49,.5);
  content: "";
}

.select__option-check {
  display: grid;
  width: 18px;
  height: 18px;
  flex: none;
  place-items: center;
  color: var(--c-accent-strong);
  opacity: 0;
  transform: scale(.8);
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease;
}

.select__option-check .icon {
  width: 13px;
  height: 13px;
}

.select__option[aria-selected="true"] .select__option-check {
  opacity: 1;
  transform: scale(1);
}

.choices {
  margin-top: 13px;
  gap: 8px;
}

.choice__control {
  min-height: 50px;
  border-color: rgba(242,241,237,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.004)),
    #0f0f0f;
}

.choice__label {
  color: #d5d1cb;
}

.choice:hover .choice__control {
  border-color: rgba(242,241,237,.27);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.006)),
    #101010;
}

.choice__input:checked + .choice__control {
  border-color: rgba(245,35,49,.58);
  background:
    linear-gradient(135deg, rgba(245,35,49,.105), rgba(245,35,49,.02)),
    #100d0e;
  box-shadow: inset 2px 0 0 rgba(245,35,49,.66);
}

.field.has-error .choice__control {
  border-color: rgba(255,79,88,.34);
}

.form-alert {
  align-items: flex-start;
  gap: 9px;
  margin: 0 clamp(26px, 5vw, 58px) 20px;
  padding: 12px 14px;
  border: 0;
  border-left: 2px solid rgba(255,79,88,.82);
  background: linear-gradient(90deg, rgba(255,79,88,.09), rgba(255,79,88,.018) 72%, transparent);
  color: #ff969c;
  font-size: .73rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-alert .icon {
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 1px;
}

@keyframes select-menu-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .step-card__fields {
    padding: 24px 20px 6px;
  }

  .field-slot {
    margin-bottom: 22px;
  }

  .field-group-title {
    margin-bottom: 20px;
    padding-top: 22px;
    font-size: 1.45rem;
  }

  .field__label {
    font-size: .82rem;
  }

  .field__hint {
    font-size: .69rem;
  }

  .input,
  .select__trigger {
    min-height: 52px;
    font-size: 1rem;
  }

  .input--textarea {
    min-height: 116px;
  }

  .select__list {
    max-height: min(252px, 38svh);
  }

  .select__option {
    min-height: 43px;
    padding-block: 9px;
    font-size: .78rem;
  }

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

  .step-card__nav {
    background: rgba(11,11,11,.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}

body[data-screen="wizard"] {
  color-scheme: dark;
}

body[data-screen="wizard"] .step-card__desc {
  color: #aaa49e;
  font-size: .93rem;
  line-height: 1.62;
}

body[data-screen="wizard"] .step-card__legend {
  color: #918b84;
  font-size: .74rem;
  line-height: 1.5;
}

body[data-screen="wizard"] .field__label {
  color: #f0ede8;
  font-size: .88rem;
  font-weight: 560;
  line-height: 1.48;
}

body[data-screen="wizard"] .field__hint {
  max-width: 64ch;
  margin: 8px 0 0;
  color: #aaa49d;
  font-size: .79rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.006em;
}

body[data-screen="wizard"] .input::placeholder {
  color: #8d877f;
  opacity: 1;
}

body[data-screen="wizard"] .input:focus::placeholder {
  color: #736e68;
}

body[data-screen="wizard"] .select__trigger.is-placeholder .select__value {
  color: #8d877f;
}

body[data-screen="wizard"] .choice__desc {
  color: #9d9790;
  font-size: .75rem;
  line-height: 1.5;
}

body[data-screen="wizard"] .field__error {
  margin-top: 9px;
  color: #ff9ca2;
  font-size: .76rem;
  font-weight: 520;
  line-height: 1.5;
}

body[data-screen="wizard"] .form-alert {
  color: #ffadb2;
  font-size: .77rem;
  line-height: 1.55;
}

body[data-screen="wizard"] .field.has-error .field__hint {
  color: #b4aaa5;
}

@media (max-width: 640px) {
  body[data-screen="wizard"] .step-card__desc {
    font-size: .9rem;
    line-height: 1.58;
  }

  body[data-screen="wizard"] .step-card__legend {
    font-size: .73rem;
  }

  body[data-screen="wizard"] .field__label {
    font-size: .87rem;
    line-height: 1.5;
  }

  body[data-screen="wizard"] .field__hint {
    margin-top: 7px;
    color: #aaa49d;
    font-size: .78rem;
    line-height: 1.55;
  }

  body[data-screen="wizard"] .input,
  body[data-screen="wizard"] .select__trigger {
    font-size: .96rem;
  }

  body[data-screen="wizard"] .input::placeholder,
  body[data-screen="wizard"] .select__trigger.is-placeholder .select__value {
    color: #938d85;
  }

  body[data-screen="wizard"] .choice__desc {
    font-size: .76rem;
  }

  body[data-screen="wizard"] .field__error,
  body[data-screen="wizard"] .form-alert {
    font-size: .77rem;
  }
}
@media (max-width: 1023px) {
  .brief-hero__grid {
    grid-template-columns: minmax(0,1fr) minmax(240px,300px);
    gap: 36px;
  }

  .brief-hero__title {
    font-size: clamp(4.1rem, 9vw, 6.4rem);
  }

  .brief-orbit {
    width: min(31vw, 285px);
  }
}

.brief-hero {
  height: clamp(560px, 66svh, 700px);
  min-height: 560px;
}

@media (max-width: 820px) {
  .brief-hero {
    height: auto;
    min-height: 0;
  }

  .brief-hero__grid {
    grid-template-columns: 1fr;
  }

  .brief-hero__inner {
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto auto;
  }

  .brief-hero__copy {
    align-self: auto;
    padding-block: clamp(58px, 9svh, 82px) 24px;
  }

  .brief-hero__visual {
    display: none;
  }

  .brief-hero__bottom {
    margin-top: 0;
    padding-top: 14px;
  }

  .brief-hero__title {
    font-size: clamp(4rem, 13vw, 6.4rem);
  }

  .brief-hero__lead {
    max-width: 520px;
  }

  .brief-meta {
    gap: 8px 18px;
  }
}

@media (max-width: 640px) {
  .brief-hero__topline {
    font-size: .49rem;
    letter-spacing: .16em;
  }

  .brief-hero__topline span:last-child {
    display: none;
  }

  .brief-hero__grid {
    display: block;
  }

  .brief-hero__inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brief-hero__copy {
    padding-block: clamp(60px, 9.5svh, 80px) 22px;
  }

  .brief-hero__title {
    font-size: clamp(3.75rem, 17vw, 5rem);
  }

  .brief-hero__lead {
    margin-top: 18px;
  }

  .brief-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 22px;
  }

  .brief-hero__actions .btn--primary {
    width: 100%;
    justify-content: space-between;
  }

  .brief-hero__actions .btn--text {
    width: max-content;
  }

  .brief-resume {
    font-size: .68rem;
  }

  .brief-hero__bottom {
    align-items: flex-end;
  }

  .brief-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 7px 14px;
  }
}

@media (max-width: 640px) and (max-height: 720px) {
  .brief-hero__copy {
    padding-block: 46px 18px;
  }
}

.brief-quick {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(242,241,237,.08);
  border-bottom: 1px solid rgba(242,241,237,.08);
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    #0c0c0c;
  background-size: 72px 72px;
}

.brief-quick__inner {
  padding-block: 34px 38px;
}

.brief-quick__head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .7fr);
  align-items: end;
  gap: 28px 56px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(242,241,237,.09);
}

.brief-quick__head h2 {
  margin-top: 7px;
  color: var(--c-offwhite);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: .98;
}

.brief-quick__head > p {
  max-width: 470px;
  justify-self: end;
  color: #85807a;
  font-size: .78rem;
  line-height: 1.5;
}

.brief-quick__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brief-quick__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 20px 22px 18px 0;
  border-right: 1px solid rgba(242,241,237,.08);
}

.brief-quick__item + .brief-quick__item {
  padding-left: 22px;
}

.brief-quick__item:last-child {
  border-right: 0;
}

.brief-quick__number {
  padding-top: 4px;
  color: #b34048;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.brief-quick__copy {
  min-width: 0;
}

.brief-quick__copy h3 {
  color: #e9e5df;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.035em;
}

.brief-quick__copy p {
  max-width: 33ch;
  margin-top: 7px;
  color: #77726d;
  font-size: .72rem;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .brief-quick__inner {
    padding-block: 26px 28px;
  }

  .brief-quick__head {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-bottom: 14px;
  }

  .brief-quick__head h2 {
    font-size: 2rem;
  }

  .brief-quick__head > p {
    justify-self: start;
    max-width: 38em;
    font-size: .74rem;
  }

  .brief-quick__grid {
    grid-template-columns: 1fr;
  }

  .brief-quick__item,
  .brief-quick__item + .brief-quick__item {
    grid-template-columns: 32px minmax(0,1fr);
    gap: 12px;
    padding: 11px 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(242,241,237,.07);
  }

  .brief-quick__item:last-child {
    border-bottom: 0;
  }

  .brief-quick__copy h3 {
    font-size: 1.18rem;
  }

  .brief-quick__copy p {
    max-width: none;
    margin-top: 4px;
    font-size: .69rem;
    line-height: 1.4;
  }
}

@media (max-width: 640px) {
  .brief-hero__inner {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .brief-hero__copy {
    padding-block: 44px 16px;
  }

  .brief-hero__title {
    margin-top: 10px;
    font-size: clamp(3.35rem, 15.2vw, 4.55rem);
    line-height: .87;
  }

  .brief-hero__lead {
    margin-top: 15px;
    font-size: .82rem;
    line-height: 1.47;
  }

  .brief-hero__actions {
    margin-top: 18px;
  }

  .brief-hero__actions .btn--primary {
    min-height: 50px;
  }

  .brief-hero__bottom {
    padding-top: 11px;
  }

  .brief-meta {
    gap: 6px 13px;
    font-size: .47rem;
  }

  .brief-quick__inner {
    padding-block: 21px 23px;
  }

  .brief-quick__head {
    padding-bottom: 12px;
  }

  .brief-quick__head .hub-kicker {
    font-size: .55rem;
  }

  .brief-quick__head h2 {
    margin-top: 5px;
    font-size: 1.68rem;
  }

  .brief-quick__head > p {
    font-size: .69rem;
    line-height: 1.4;
  }

  .brief-quick__item,
  .brief-quick__item + .brief-quick__item {
    padding-block: 9px 10px;
  }

  .brief-quick__number {
    padding-top: 3px;
    font-size: .51rem;
  }

  .brief-quick__copy h3 {
    font-size: 1.08rem;
  }

  .brief-quick__copy p {
    font-size: .66rem;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  .brief-hero__copy {
    padding-block: 34px 13px;
  }

  .brief-hero__title {
    font-size: clamp(3.05rem, 14.2vw, 4.1rem);
  }

  .brief-hero__lead {
    margin-top: 12px;
  }

  .brief-hero__actions {
    margin-top: 15px;
  }

  .brief-quick__inner {
    padding-block: 18px 20px;
  }

  .brief-quick__item,
  .brief-quick__item + .brief-quick__item {
    padding-block: 8px;
  }
}