.dex-wip {
  --dex-wip-background: #f5f6f3;
  --dex-wip-ink: #101820;
  --dex-wip-muted: #667078;
  --dex-wip-line: #d9dedf;
  --dex-wip-accent: #00a8c6;
  --dex-wip-accent-dark: #006f83;
  --dex-wip-surface: #fafbf8;
  --dex-wip-project-progress: 25%;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--dex-wip-background);
  color: var(--dex-wip-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.dex-wip,
.dex-wip *,
.dex-wip *::before,
.dex-wip *::after {
  box-sizing: border-box;
}

.dex-wip h1,
.dex-wip h2,
.dex-wip h3,
.dex-wip p,
.dex-wip li,
.dex-wip a,
.dex-wip span,
.dex-wip strong,
.dex-wip small,
.dex-wip output {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: normal;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.dex-wip a {
  color: inherit;
}

.dex-wip a:focus-visible {
  outline: 3px solid var(--dex-wip-accent);
  outline-offset: 4px;
}

body.dex-wip-canvas-page {
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--dex-wip-background, #f5f6f3);
  color: var(--dex-wip-ink, #101820);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.dex-wip-canvas-page .dex-canvas {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
}

body.dex-wip-canvas-page .dex-canvas > * {
  max-width: none;
  margin-block: 0;
}

body.dex-wip-canvas-page .dex-canvas__skip-link {
  position: absolute;
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  background: var(--dex-wip-ink, #101820);
  color: var(--dex-wip-background, #f5f6f3);
  text-decoration: none;
}

body.dex-wip-canvas-page .dex-canvas__skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip-path: none;
}

.dex-wip .dex-wip__inner {
  container-name: dex-wip-layout;
  container-type: inline-size;
  width: calc(100% - 2rem);
  max-width: 80rem;
  min-width: 0;
  min-height: 100vh;
  margin-inline: auto;
}

.dex-wip .dex-wip__site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
  border-bottom: 1px solid var(--dex-wip-line);
}

.dex-wip .dex-wip__wordmark {
  flex: 0 1 auto;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 1;
}

.dex-wip .dex-wip__header-status {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  color: var(--dex-wip-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.dex-wip .dex-wip__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dex-wip-accent);
  box-shadow: 0 0 0 0.3rem rgba(0, 168, 198, 0.1);
}

.dex-wip .dex-wip__hero {
  display: grid;
  grid-template-areas:
    "copy"
    "side";
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  align-items: start;
  padding-block: 3.75rem 4.5rem;
}

.dex-wip .dex-wip__hero > *,
.dex-wip .dex-wip__phases > *,
.dex-wip .dex-wip__phase-list > *,
.dex-wip .dex-wip__phase-item > *,
.dex-wip .dex-wip__careers-compact > *,
.dex-wip .dex-wip__careers-cta > * {
  min-width: 0;
}

.dex-wip .dex-wip__hero-copy {
  grid-area: copy;
  align-self: start;
}

.dex-wip .dex-wip__hero-side {
  display: grid;
  grid-area: side;
  gap: 1.25rem;
  width: 100%;
  max-width: 38rem;
  min-width: 0;
  justify-self: start;
}

.dex-wip .dex-wip__hero-visual {
  width: 100%;
  max-width: none;
  margin: 0;
}

.dex-wip .dex-wip__hero-visual picture {
  display: block;
}

.dex-wip .dex-wip__hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--dex-wip-line);
  object-fit: contain;
}

.dex-wip .dex-wip__eyebrow,
.dex-wip .dex-wip__section-index,
.dex-wip .dex-wip__section-label {
  margin: 0;
  color: var(--dex-wip-muted);
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dex-wip .dex-wip__eyebrow {
  margin-bottom: 1.35rem;
}

.dex-wip .dex-wip__hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--dex-wip-ink);
  font-size: clamp(3rem, 14vw, 5rem);
  font-weight: 570;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.dex-wip .dex-wip__subtitle {
  max-width: 32rem;
  margin: 1.8rem 0 0;
  color: var(--dex-wip-ink);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.dex-wip .dex-wip__intro {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: var(--dex-wip-muted);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}

.dex-wip .dex-wip__progress-panel {
  width: 100%;
  max-width: none;
  padding: 1rem;
  border: 1px solid var(--dex-wip-line);
  background: var(--dex-wip-surface);
}

.dex-wip .dex-wip__progress-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.dex-wip .dex-wip__progress-heading-row h2 {
  margin: 0.4rem 0 0;
  color: var(--dex-wip-ink);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dex-wip .dex-wip__progress-number {
  color: var(--dex-wip-ink);
  font-size: clamp(2.65rem, 4.3vw, 3.8rem);
  font-variant-numeric: tabular-nums;
  font-weight: 540;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.dex-wip .dex-wip__progress-track {
  position: relative;
  height: 0.24rem;
  margin-top: 1.25rem;
  overflow: hidden;
  background: var(--dex-wip-line);
}

.dex-wip .dex-wip__progress-fill {
  display: block;
  width: var(--dex-wip-project-progress);
  height: 100%;
  background: var(--dex-wip-accent);
  transform-origin: left center;
}

.dex-wip.dex-wip--js .dex-wip__progress-fill {
  animation: dex-wip-reveal-progress 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dex-wip .dex-wip__progress-meta {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.9rem;
}

.dex-wip .dex-wip__progress-meta span {
  color: var(--dex-wip-muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dex-wip .dex-wip__progress-meta strong {
  color: var(--dex-wip-ink);
  font-size: 0.94rem;
  font-weight: 680;
}

.dex-wip .dex-wip__noscript-note {
  margin: 1rem 0 0;
  color: var(--dex-wip-muted);
  font-size: 0.8rem;
}

.dex-wip .dex-wip__phases {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.75rem;
  padding-block: 4.5rem;
  border-top: 1px solid var(--dex-wip-line);
}

.dex-wip .dex-wip__section-heading {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-content: start;
}

.dex-wip .dex-wip__section-heading h2 {
  margin: 0.7rem 0 0;
  color: var(--dex-wip-ink);
  font-size: clamp(2rem, 6vw, 3.45rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.dex-wip .dex-wip__phase-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--dex-wip-line);
  list-style: none;
}

.dex-wip .dex-wip__phase-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 6.3rem;
  margin: 0;
  padding: 1.1rem 0.65rem;
  border-bottom: 1px solid var(--dex-wip-line);
}

.dex-wip .dex-wip__phase-item--current::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 0.25rem;
  background: var(--dex-wip-accent);
  content: "";
}

.dex-wip .dex-wip__phase-number {
  color: var(--dex-wip-muted);
  font-size: 0.7rem;
  font-weight: 740;
  letter-spacing: 0.12em;
}

.dex-wip .dex-wip__phase-item--current .dex-wip__phase-number {
  color: var(--dex-wip-accent-dark);
}

.dex-wip .dex-wip__phase-item h3 {
  margin: 0;
  color: var(--dex-wip-ink);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 620;
  letter-spacing: -0.02em;
}

.dex-wip .dex-wip__phase-item p {
  margin: 0.3rem 0 0;
  color: var(--dex-wip-muted);
  font-size: 0.88rem;
}

.dex-wip .dex-wip__phase-marker {
  grid-column: 2;
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  margin-top: 0.2rem;
  padding: 0.42rem 0.6rem;
  border: 1px solid rgba(0, 111, 131, 0.48);
  color: var(--dex-wip-accent-dark);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.dex-wip .dex-wip__careers {
  padding-block: 3.5rem;
  border-top: 1px solid var(--dex-wip-line);
}

.dex-wip .dex-wip__careers-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  align-items: start;
}

.dex-wip .dex-wip__careers-heading h2 {
  max-width: 18ch;
  margin: 1.25rem 0 0;
  color: var(--dex-wip-ink);
  font-size: clamp(2.25rem, 9vw, 4.25rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1;
}

.dex-wip .dex-wip__careers-content {
  width: 100%;
  max-width: 47rem;
  padding-top: 1.35rem;
  border-top: 3px solid var(--dex-wip-accent);
}

.dex-wip .dex-wip__careers-content > p {
  margin: 0;
  color: var(--dex-wip-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}

.dex-wip .dex-wip__careers-content > p + p {
  margin-top: 0.85rem;
}

.dex-wip .dex-wip__careers-main {
  color: var(--dex-wip-ink);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 620;
}

.dex-wip .dex-wip__careers-topics {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dex-wip-line);
}

.dex-wip .dex-wip__careers-topics strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--dex-wip-ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dex-wip .dex-wip__careers-portfolio {
  color: var(--dex-wip-ink);
  font-weight: 580;
}

.dex-wip .dex-wip__careers-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  margin-top: 1.75rem;
  padding: 1.25rem 1.1rem;
  border: 1px solid var(--dex-wip-line);
  background: var(--dex-wip-surface);
}

.dex-wip .dex-wip__careers-cta > p {
  margin: 0;
  color: var(--dex-wip-ink);
  font-size: 0.94rem;
  font-weight: 620;
  line-height: 1.55;
}

.dex-wip .dex-wip__careers-actions {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.dex-wip .dex-wip__careers-button {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  max-width: 100%;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--dex-wip-ink);
  overflow-wrap: normal;
  white-space: normal;
  color: var(--dex-wip-background);
  background: var(--dex-wip-ink);
  text-decoration: none;
}

.dex-wip .dex-wip__careers-button > span {
  font-size: 0.92rem;
  font-weight: 720;
}

.dex-wip .dex-wip__careers-button small {
  color: var(--dex-wip-line);
  font-size: 0.72rem;
}

.dex-wip .dex-wip__careers-button[aria-disabled="true"] {
  border-style: dashed;
  color: var(--dex-wip-ink);
  background: transparent;
  cursor: not-allowed;
}

.dex-wip .dex-wip__careers-button[aria-disabled="true"] > span,
.dex-wip .dex-wip__careers-button[aria-disabled="true"] small {
  color: var(--dex-wip-muted);
}

.dex-wip .dex-careers-disclosure {
  width: 100%;
  min-width: 0;
}

.dex-wip .dex-careers-disclosure__summary {
  list-style: none;
  cursor: pointer;
}

.dex-wip .dex-careers-disclosure__summary::-webkit-details-marker {
  display: none;
}

.dex-wip .dex-careers-form__panel {
  width: 100%;
  min-width: 0;
  margin-top: 1.5rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  border: 1px solid var(--dex-wip-line);
  background: var(--dex-wip-background);
}

.dex-wip.dex-wip--js .dex-careers-disclosure[open] .dex-careers-form__panel {
  animation: dex-careers-reveal 220ms ease-out both;
}

.dex-wip .dex-careers-form__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dex-wip-line);
}

.dex-wip .dex-careers-form__header h3 {
  max-width: 20ch;
  margin: 0;
  color: var(--dex-wip-ink);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.dex-wip .dex-careers-form__close {
  display: none;
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--dex-wip-line);
  color: var(--dex-wip-ink);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 680;
  cursor: pointer;
}

.dex-wip.dex-wip--js .dex-careers-form__close {
  display: inline-flex;
  align-items: center;
}

.dex-wip .dex-careers-form__notice {
  min-height: 0;
  margin-top: 1rem;
  color: var(--dex-wip-ink);
  font-size: 0.9rem;
  line-height: 1.55;
}

.dex-wip .dex-careers-form__notice:empty {
  display: none;
}

.dex-wip .dex-careers-form__notice p {
  margin: 0;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--dex-wip-accent);
  background: var(--dex-wip-surface);
}

.dex-wip .dex-careers-form {
  margin-top: 1.25rem;
}

.dex-wip .dex-careers-form fieldset {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.dex-wip .dex-careers-form fieldset[disabled] {
  opacity: 0.62;
}

.dex-wip .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.dex-wip .dex-careers-form__field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.dex-wip .dex-careers-form__field label,
.dex-wip .dex-careers-form__label-row {
  color: var(--dex-wip-ink);
  font-size: 0.8rem;
  font-weight: 680;
  line-height: 1.4;
}

.dex-wip .dex-careers-form__label-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.dex-wip .dex-careers-form__label-row output,
.dex-wip .dex-careers-form__optional {
  color: var(--dex-wip-muted);
  font-size: 0.7rem;
  font-weight: 560;
}

.dex-wip .dex-careers-form input,
.dex-wip .dex-careers-form textarea,
.dex-wip .dex-careers-form button {
  font-family: inherit;
}

.dex-wip .dex-careers-form input[type="text"],
.dex-wip .dex-careers-form input[type="email"],
.dex-wip .dex-careers-form input[type="tel"],
.dex-wip .dex-careers-form input[type="file"],
.dex-wip .dex-careers-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 2.9rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--dex-wip-line);
  border-radius: 0;
  color: var(--dex-wip-ink);
  background: var(--dex-wip-surface);
  font-size: 1rem;
  line-height: 1.45;
}

.dex-wip .dex-careers-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.dex-wip .dex-careers-form input[type="file"] {
  min-height: 3.2rem;
  padding: 0.55rem;
  font-size: 0.86rem;
}

.dex-wip .dex-careers-form input:focus-visible,
.dex-wip .dex-careers-form textarea:focus-visible,
.dex-wip .dex-careers-form button:focus-visible,
.dex-wip .dex-careers-disclosure__summary:focus-visible {
  outline: 3px solid var(--dex-wip-accent);
  outline-offset: 3px;
}

.dex-wip .dex-careers-form [aria-invalid="true"] {
  border-color: var(--dex-wip-accent-dark);
  border-width: 2px;
}

.dex-wip .dex-careers-form__help,
.dex-wip .dex-careers-form__field-error {
  margin: 0;
  color: var(--dex-wip-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.dex-wip .dex-careers-form__field-error {
  color: var(--dex-wip-ink);
  font-weight: 680;
}

.dex-wip .dex-careers-form__privacy {
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  padding: 1rem 0;
  border-block: 1px solid var(--dex-wip-line);
}

.dex-wip .dex-careers-form__privacy input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  accent-color: var(--dex-wip-accent-dark);
}

.dex-wip .dex-careers-form__privacy label {
  display: inline;
  font-weight: 560;
}

.dex-wip .dex-careers-form__privacy a {
  color: var(--dex-wip-ink);
  font-size: 0.8rem;
  font-weight: 680;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.dex-wip .dex-careers-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.25rem;
}

.dex-wip .dex-careers-form__submit {
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--dex-wip-ink);
  color: var(--dex-wip-background);
  background: var(--dex-wip-ink);
  font-size: 0.86rem;
  font-weight: 720;
  cursor: pointer;
}

.dex-wip .dex-careers-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.dex-wip .dex-careers-form__actions p {
  margin: 0;
  color: var(--dex-wip-muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.dex-wip .dex-careers-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dex-wip .dex-wip__privacy-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.25rem;
  width: 100%;
  max-width: 100%;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--dex-wip-line);
  color: var(--dex-wip-ink);
  font-size: 0.78rem;
  font-weight: 660;
  text-decoration: none;
}

.dex-wip .dex-wip__privacy-link span {
  color: var(--dex-wip-muted);
  font-size: 0.68rem;
  font-weight: 580;
  text-align: left;
}

.dex-wip .dex-wip__privacy-link[aria-disabled="true"] {
  cursor: not-allowed;
}

.dex-wip .dex-wip__site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
  padding-block: 2rem 3rem;
  border-top: 1px solid var(--dex-wip-line);
  color: var(--dex-wip-muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dex-wip .dex-wip__site-footer p {
  margin: 0;
}

.dex-wip .dex-wip__site-footer a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.dex-privacy {
  --dex-wip-background: #f5f6f3;
  --dex-wip-ink: #101820;
  --dex-wip-muted: #667078;
  --dex-wip-line: #d9dedf;
  --dex-wip-accent: #00a8c6;
  width: calc(100% - 2rem);
  max-width: 64rem;
  min-width: 0;
  margin-inline: auto;
  color: var(--dex-wip-ink);
  background: var(--dex-wip-background);
}

.dex-privacy,
.dex-privacy *,
.dex-privacy *::before,
.dex-privacy *::after {
  box-sizing: border-box;
}

.dex-privacy__site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
  border-bottom: 1px solid var(--dex-wip-line);
}

.dex-privacy__site-header p,
.dex-privacy__site-footer p {
  margin: 0;
}

.dex-privacy__site-header p {
  color: var(--dex-wip-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.dex-privacy__wordmark {
  color: var(--dex-wip-ink);
  font-size: 1.55rem;
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 1;
  text-decoration: none;
}

.dex-privacy__content {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.dex-privacy__content h1 {
  max-width: 16ch;
  margin: 0 0 clamp(3rem, 6vw, 5rem);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.dex-privacy__content h2 {
  margin: 2.75rem 0 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--dex-wip-line);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.dex-privacy__content p,
.dex-privacy__content li {
  max-width: 78ch;
  color: var(--dex-wip-muted);
  font-size: 1rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.dex-privacy__content p {
  margin: 0.7rem 0 0;
}

.dex-privacy__content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.4rem;
}

.dex-privacy__content a,
.dex-privacy__site-footer a {
  color: var(--dex-wip-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.dex-privacy a:focus-visible {
  outline: 3px solid var(--dex-wip-accent);
  outline-offset: 4px;
}

.dex-privacy__site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
  padding-block: 2rem 3rem;
  border-top: 1px solid var(--dex-wip-line);
  color: var(--dex-wip-muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@container dex-wip-layout (min-width: 40rem) {
  .dex-wip .dex-wip__phase-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--dex-wip-line);
  }

  .dex-wip .dex-wip__phase-item {
    border-right: 1px solid var(--dex-wip-line);
  }

  .dex-wip .dex-wip__careers-cta {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.86fr);
    padding: clamp(1.35rem, 2.5vw, 2rem);
  }

  .dex-wip .dex-careers-disclosure,
  .dex-wip .dex-wip__careers-cta > .dex-wip__privacy-link {
    grid-column: 2;
  }

  .dex-wip .dex-careers-disclosure[open] {
    grid-column: 1 / -1;
  }

  .dex-wip .dex-careers-disclosure[open] > .dex-careers-disclosure__summary {
    width: min(100%, 20rem);
    margin-left: auto;
  }

  .dex-wip .dex-careers-form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .dex-wip .dex-careers-form__field--wide {
    grid-column: 1 / -1;
  }

  .dex-wip .dex-wip__privacy-link {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .dex-wip .dex-wip__privacy-link span {
    text-align: right;
  }

  .dex-wip .dex-wip__site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 2rem;
  }

}

@container dex-wip-layout (min-width: 58rem) {
  .dex-wip .dex-wip__site-header {
    min-height: clamp(5.5rem, 8vw, 7rem);
  }

  .dex-wip .dex-wip__header-status {
    font-size: 0.75rem;
  }

  .dex-wip .dex-wip__hero {
    grid-template-areas: "copy side";
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(3rem, 5vw, 5rem);
    min-height: clamp(38rem, calc(100svh - 7rem), 46rem);
    padding-block: clamp(4rem, 7vw, 7rem);
  }

  .dex-wip .dex-wip__eyebrow {
    margin-bottom: 1.1rem;
  }

  .dex-wip .dex-wip__hero-copy {
    align-self: start;
    margin-block-start: calc(-2.18rem - clamp(0.5175rem, 1.05vw, 1.125rem));
  }

  .dex-wip .dex-wip__hero h1 {
    font-size: clamp(3.45rem, 7vw, 7.5rem);
    line-height: 0.9;
  }

  .dex-wip .dex-wip__hero-side {
    justify-self: end;
  }

  .dex-wip .dex-wip__progress-panel {
    padding: 1.2rem;
  }

  .dex-wip .dex-wip__progress-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
  }

  .dex-wip .dex-wip__phases {
    grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 6rem);
    padding-block: clamp(5rem, 8vw, 8rem);
  }

  .dex-wip .dex-wip__section-heading {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1.25rem;
  }

  .dex-wip .dex-wip__section-heading h2 {
    max-width: 10ch;
  }

  .dex-wip .dex-wip__careers {
    padding-block: clamp(3.75rem, 6vw, 6rem);
  }

  .dex-wip .dex-wip__careers-compact {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 7vw, 7.5rem);
  }

  .dex-wip .dex-wip__careers-content {
    justify-self: end;
  }
}

@media (min-width: 40rem) {
  .dex-privacy__site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 2rem;
  }
}

@keyframes dex-wip-reveal-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes dex-careers-reveal {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .dex-wip *,
  .dex-wip *::before,
  .dex-wip *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
