.skin-profile-page {
  min-height: 100vh;
  background: var(--paper);
}

.profile-screen[hidden],
.profile-validation[hidden],
.profile-storage-message[hidden],
.profile-back-link[hidden],
.profile-back-button[hidden] {
  display: none;
}

.profile-site-header {
  background: rgba(244, 242, 235, .88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.profile-header-inner {
  justify-content: space-between;
}

.profile-home-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  color: #59635f;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.profile-home-link:hover {
  color: var(--forest);
}

.profile-home-link .ui-icon {
  width: 17px;
  height: 17px;
}

.skin-profile-main {
  min-height: calc(100vh - 92px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 30px;
}

.skin-profile-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(rgba(23, 32, 29, .13) .65px, transparent .65px);
  background-size: 10px 10px;
  mask-image: linear-gradient(115deg, #000, transparent 64%);
}

.profile-page-orb {
  width: 620px;
  height: 620px;
  position: absolute;
  z-index: -1;
  right: -230px;
  top: 110px;
  border-radius: 50%;
  background: #e1e5d5;
  opacity: .72;
}

.profile-intro {
  width: min(var(--container), 1060px);
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: center;
  gap: 90px;
  padding-block: 70px 62px;
}

.profile-intro-copy {
  position: relative;
  z-index: 1;
}

.profile-intro-copy h1,
.profile-result-heading h1 {
  margin-bottom: 25px;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 560;
  line-height: 1.01;
  letter-spacing: -.055em;
}

.profile-intro-copy > p {
  max-width: 590px;
  margin-bottom: 21px;
  color: #59635f;
  font-size: 16px;
  line-height: 1.65;
}

.profile-intro-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 29px;
  color: #78817d;
  font-size: 11px;
}

.profile-intro-meta .ui-icon {
  width: 15px;
  height: 15px;
}

.profile-intro-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .4;
}

.profile-start-button {
  min-width: 210px;
}

.profile-start-button .ui-icon,
.profile-result-actions .ui-icon {
  width: 17px;
  height: 17px;
}

.profile-intro-visual {
  min-height: 460px;
  position: relative;
  display: grid;
  place-items: center;
}

.profile-intro-rings i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 310px;
  height: 390px;
  border: 1px solid rgba(23, 63, 53, .13);
  border-radius: 47% 53% 43% 57%;
  transform: translate(-50%, -50%) rotate(21deg);
}

.profile-intro-rings i:nth-child(2) {
  width: 395px;
  height: 325px;
  transform: translate(-50%, -50%) rotate(64deg);
}

.profile-intro-rings i:nth-child(3) {
  width: 450px;
  height: 450px;
  opacity: .55;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.profile-preview-card {
  width: 300px;
  min-height: 354px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 29, .11);
  border-radius: 30px;
  background: rgba(251, 250, 246, .9);
  box-shadow: 0 28px 70px rgba(24, 48, 40, .14);
  backdrop-filter: blur(16px);
  transform: rotate(2deg);
}

.profile-preview-card::after {
  content: "";
  width: 210px;
  height: 210px;
  position: absolute;
  right: -105px;
  bottom: -95px;
  border: 1px solid rgba(23, 63, 53, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(23, 63, 53, .025), 0 0 0 76px rgba(23, 63, 53, .02);
}

.profile-preview-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #7a8580;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .13em;
}

.profile-preview-top strong {
  color: var(--forest);
}

.profile-preview-line {
  width: 100%;
  height: 2px;
  margin: 13px 0 37px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(23, 63, 53, .1);
}

.profile-preview-line i {
  display: block;
  width: 18%;
  height: 100%;
  background: var(--forest);
}

.profile-preview-card > svg {
  width: 45px;
  height: 45px;
  margin-bottom: 23px;
  color: var(--forest);
}

.profile-preview-label {
  margin-bottom: 8px;
  color: #7a8580;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-preview-title {
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.profile-preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.profile-preview-chips span {
  padding: 6px 9px;
  border-radius: 100px;
  background: #e4e9df;
  color: var(--forest);
  font-size: 8px;
}

.profile-workspace {
  width: min(var(--container), 1040px);
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: 235px minmax(0, 735px);
  align-items: start;
  justify-content: center;
  gap: 48px;
  padding-block: 64px 48px;
}

.profile-context {
  position: sticky;
  top: 132px;
  padding: 16px 2px;
}

.profile-context > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.profile-context-kicker,
.profile-progress-value {
  color: #7b8580;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .14em;
}

.profile-progress-value {
  color: var(--forest);
}

.profile-progress-track {
  width: 100%;
  height: 2px;
  margin: 15px 0 33px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(23, 63, 53, .1);
}

.profile-progress-track i {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: var(--forest);
  transition: width .28s ease;
}

.profile-context-detail {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 13px;
}

.profile-context-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(251, 250, 246, .52);
}

.profile-context-icon .ui-icon {
  width: 19px;
  height: 19px;
}

.profile-context-detail p {
  margin: 4px 0 0;
  color: #525d58;
  font-size: 13px;
  line-height: 1.55;
}

.profile-context-note {
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #87908c;
  font-size: 10px;
  line-height: 1.55;
}

.profile-form {
  min-width: 0;
}

.profile-question-card {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 42px 44px 30px;
  border: 1px solid rgba(23, 32, 29, .1);
  border-radius: 32px;
  background: rgba(251, 250, 246, .94);
  box-shadow: 0 24px 70px rgba(25, 48, 41, .09);
  backdrop-filter: blur(14px);
}

.profile-step {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease;
}

.profile-step.is-active {
  opacity: 1;
  transform: none;
}

.profile-question-top {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 18px;
  margin-bottom: 30px;
}

.profile-question-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 63, 53, .12);
  border-radius: 16px;
  color: var(--forest);
  background: #e8ece4;
}

.profile-question-icon .ui-icon {
  width: 23px;
  height: 23px;
}

.profile-question-label {
  display: block;
  margin-bottom: 8px;
  color: #84908a;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.profile-question-legend {
  max-width: 590px;
  margin: 0;
  padding: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.profile-question-legend:focus,
.profile-result-heading h1:focus {
  outline: none;
}

.profile-question-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.profile-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.profile-options-meta {
  min-height: 22px;
  display: flex;
  justify-content: flex-end;
  margin: -11px 0 9px;
}

.profile-selection-count {
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.profile-card-options,
.profile-chip-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.profile-choice {
  min-width: 0;
  position: relative;
  display: block;
  cursor: pointer;
}

.profile-choice.is-wide {
  grid-column: 1 / -1;
}

.profile-choice-input {
  width: 1px;
  height: 1px;
  position: absolute;
  left: 12px;
  top: 12px;
  opacity: 0;
}

.profile-choice-surface {
  height: 100%;
  min-height: 122px;
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-content: center;
  gap: 4px 13px;
  padding: 18px 38px 18px 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .35);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

.profile-option-icon {
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: #e6eae3;
}

.profile-option-icon .ui-icon {
  width: 18px;
  height: 18px;
}

.profile-option-name {
  align-self: end;
  font-size: 14px;
  font-weight: 710;
}

.profile-option-description {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.profile-option-check,
.profile-chip-check {
  width: 19px;
  height: 19px;
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 63, 53, .18);
  border-radius: 50%;
  color: transparent;
  background: transparent;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.profile-option-check .ui-icon,
.profile-chip-check .ui-icon {
  width: 11px;
  height: 11px;
}

.profile-choice:hover .profile-choice-input:not(:disabled) + .profile-choice-surface {
  border-color: rgba(23, 63, 53, .42);
  transform: translateY(-1px);
}

.profile-choice-input:checked + .profile-choice-surface {
  border-color: var(--forest);
  background: #edf0e8;
  box-shadow: inset 0 0 0 1px rgba(23, 63, 53, .05);
}

.profile-choice-input:checked + .profile-choice-surface .profile-option-check,
.profile-choice-input:checked + .profile-choice-surface .profile-chip-check,
.profile-choice-input:checked + .profile-chip-surface .profile-chip-check {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
  transform: scale(1.03);
}

.profile-choice-input:focus-visible + .profile-choice-surface,
.profile-choice-input:focus-visible + .profile-chip-surface {
  outline: 3px solid rgba(23, 63, 53, .2);
  outline-offset: 3px;
}

.profile-choice-input:disabled + .profile-choice-surface,
.profile-choice-input:disabled + .profile-chip-surface {
  opacity: .38;
  cursor: not-allowed;
}

.profile-sensitivity-meter {
  grid-column: 2;
  display: flex;
  align-items: end;
  gap: 3px;
  margin-top: 6px;
}

.profile-sensitivity-meter i {
  width: 13px;
  height: 3px;
  border-radius: 10px;
  background: var(--forest);
  opacity: .15;
}

.profile-sensitivity-meter i:nth-child(2) {
  height: 6px;
}

.profile-sensitivity-meter i:nth-child(3) {
  height: 9px;
}

.profile-sensitivity-meter.level-1 i:nth-child(-n+1),
.profile-sensitivity-meter.level-2 i:nth-child(-n+2),
.profile-sensitivity-meter.level-3 i:nth-child(-n+3) {
  opacity: 1;
}

.profile-chip-surface {
  min-height: 56px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 11px 39px 11px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .32);
  font-size: 12px;
  font-weight: 630;
  line-height: 1.35;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, opacity .2s ease;
}

.profile-chip-check {
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.profile-choice:hover .profile-choice-input:not(:disabled) + .profile-chip-surface {
  border-color: rgba(23, 63, 53, .42);
  transform: translateY(-1px);
}

.profile-choice-input:checked + .profile-chip-surface {
  border-color: var(--forest);
  background: #edf0e8;
}

.profile-choice-input:checked + .profile-chip-surface .profile-chip-check {
  transform: translateY(-50%) scale(1.03);
}

.profile-validation {
  margin: 18px 0 -2px;
  padding: 10px 12px;
  border-left: 2px solid var(--coral);
  border-radius: 0 9px 9px 0;
  background: rgba(222, 118, 93, .08);
  color: #754438;
  font-size: 11px;
  line-height: 1.45;
}

.profile-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 29px;
  border-top: 1px solid var(--line);
}

.profile-back-link,
.profile-back-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0 5px;
  background: transparent;
  color: #69736e;
  font-size: 12px;
  font-weight: 620;
  cursor: pointer;
}

.profile-back-link:hover,
.profile-back-button:hover {
  color: var(--forest);
}

.profile-back-link .ui-icon,
.profile-back-button .ui-icon {
  width: 16px;
  height: 16px;
}

.profile-next-button {
  min-width: 178px;
}

.profile-next-button:disabled {
  box-shadow: none;
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}

.profile-home-link:focus-visible,
.profile-back-link:focus-visible,
.profile-back-button:focus-visible,
.profile-next-button:focus-visible,
.profile-result-actions .button:focus-visible,
.profile-start-button:focus-visible {
  outline: 3px solid rgba(23, 63, 53, .22);
  outline-offset: 3px;
}

.profile-result {
  width: min(var(--container), 960px);
  min-height: calc(100vh - 106px);
  padding-block: 66px 58px;
}

.profile-result-heading {
  max-width: 740px;
  margin-bottom: 35px;
}

.profile-result-heading h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 4.6vw, 64px);
}

.profile-result-heading > p {
  margin: 0;
  color: #7a8580;
  font-size: 11px;
}

.skin-profile-summary-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 29, .1);
  border-radius: 31px;
  background: var(--surface);
  box-shadow: 0 25px 75px rgba(24, 48, 40, .1);
}

.profile-summary-identity {
  min-height: 430px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  color: var(--forest);
  background: #dfe5da;
}

.profile-summary-identity::before,
.profile-summary-identity::after {
  content: "";
  width: 250px;
  height: 310px;
  position: absolute;
  left: 50%;
  top: 49%;
  border: 1px solid rgba(23, 63, 53, .14);
  border-radius: 48% 52% 55% 45%;
  transform: translate(-50%, -50%) rotate(24deg);
}

.profile-summary-identity::after {
  width: 330px;
  height: 240px;
  transform: translate(-50%, -50%) rotate(67deg);
}

.profile-summary-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.profile-summary-label .ui-icon {
  width: 17px;
  height: 17px;
}

.profile-summary-type {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.profile-summary-details {
  padding: 34px 36px;
}

.profile-summary-sensitivity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.profile-summary-sensitivity span:first-child,
.profile-summary-group h2 {
  color: #808a85;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-summary-sensitivity strong {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}

.profile-summary-sensitivity .profile-sensitivity-meter {
  display: inline-flex;
  margin: 0;
}

.profile-summary-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px 32px;
  padding-top: 27px;
}

.profile-summary-group h2 {
  margin: 0 0 12px;
}

.profile-summary-values {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-summary-values span {
  padding: 7px 10px;
  border: 1px solid rgba(23, 63, 53, .08);
  border-radius: 100px;
  background: #edf0e9;
  color: #42504a;
  font-size: 10px;
  line-height: 1.2;
}

.profile-result-actions {
  display: flex;
  gap: 10px;
  margin-top: 23px;
}

.profile-storage-message {
  margin: 19px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(222, 118, 93, .22);
  border-radius: 12px;
  background: rgba(222, 118, 93, .07);
  color: #754438;
  font-size: 11px;
  line-height: 1.5;
}

.profile-privacy-note {
  max-width: 700px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0 0;
  color: #7c8581;
  font-size: 10px;
  line-height: 1.5;
}

.profile-privacy-note .ui-icon {
  width: 14px;
  height: 14px;
  flex: none;
  margin-top: 1px;
}

.profile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 21px 26px;
  border-top: 1px solid var(--line);
  color: #8c9490;
  font-size: 9px;
}

.profile-footer a:hover {
  color: var(--forest);
}

.profile-announcer {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .profile-intro {
    width: min(var(--container), 720px);
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 38px;
  }

  .profile-intro-visual {
    min-height: 390px;
  }

  .profile-preview-card {
    width: 270px;
  }

  .profile-workspace {
    width: min(var(--container), 740px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 36px;
  }

  .profile-context {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 10px 24px;
    padding: 0 3px;
  }

  .profile-context > div:first-child {
    grid-column: 1 / -1;
  }

  .profile-progress-track {
    margin: 3px 0 0;
  }

  .profile-context-detail {
    display: none;
  }

  .profile-context-note {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 9px;
    text-align: right;
  }

  .profile-question-card {
    min-height: 590px;
  }
}

@media (max-width: 620px) {
  .profile-header-inner {
    height: 66px;
  }

  .profile-home-link {
    font-size: 11px;
  }

  .skin-profile-main {
    padding-top: 66px;
  }

  .skin-profile-main::before {
    display: none;
  }

  .profile-page-orb {
    width: 420px;
    height: 420px;
    right: -280px;
    top: 170px;
  }

  .profile-intro {
    min-height: calc(100vh - 66px);
    display: block;
    padding-block: 45px 42px;
  }

  .profile-intro-copy h1,
  .profile-result-heading h1 {
    margin-bottom: 20px;
    font-size: clamp(39px, 11vw, 49px);
  }

  .profile-intro-copy > p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .profile-intro-meta {
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 10px;
  }

  .profile-start-button {
    width: 100%;
  }

  .profile-intro-visual {
    display: none;
  }

  .profile-workspace {
    width: 100%;
    min-height: calc(100vh - 66px);
    gap: 13px;
    padding: 22px 14px 0;
  }

  .profile-context {
    padding-inline: 3px;
  }

  .profile-context-note {
    display: none;
  }

  .profile-progress-track {
    grid-column: 1 / -1;
  }

  .profile-question-card {
    min-height: calc(100vh - 129px);
    padding: 25px 20px 0;
    border-radius: 24px 24px 0 0;
  }

  .profile-question-top {
    grid-template-columns: 42px 1fr;
    gap: 13px;
    margin-bottom: 23px;
  }

  .profile-question-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .profile-question-icon .ui-icon {
    width: 20px;
    height: 20px;
  }

  .profile-question-legend {
    font-size: clamp(25px, 7.5vw, 32px);
  }

  .profile-question-description {
    font-size: 12px;
  }

  .profile-card-options {
    grid-template-columns: 1fr;
  }

  .profile-choice.is-wide {
    grid-column: auto;
  }

  .profile-choice-surface {
    min-height: 106px;
  }

  .profile-chip-options {
    gap: 8px;
  }

  .profile-chip-surface {
    min-height: 60px;
    padding-left: 12px;
    font-size: 11px;
  }

  .profile-form-actions {
    position: sticky;
    z-index: 4;
    bottom: 0;
    margin: 22px -20px 0;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: rgba(251, 250, 246, .94);
    backdrop-filter: blur(14px);
  }

  .profile-next-button {
    min-width: 0;
    flex: 1;
  }

  .profile-result {
    min-height: calc(100vh - 66px);
    padding-block: 40px 45px;
  }

  .profile-result-heading {
    margin-bottom: 25px;
  }

  .skin-profile-summary-card {
    grid-template-columns: 1fr;
    border-radius: 25px;
  }

  .profile-summary-identity {
    min-height: 220px;
    padding: 23px;
  }

  .profile-summary-identity::before {
    width: 240px;
    height: 180px;
  }

  .profile-summary-identity::after {
    width: 310px;
    height: 190px;
  }

  .profile-summary-type {
    font-size: 30px;
  }

  .profile-summary-details {
    padding: 25px 21px;
  }

  .profile-summary-groups {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .profile-result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .profile-header-inner .logo {
    font-size: 13px;
  }

  .profile-home-link {
    gap: 4px;
    font-size: 10px;
  }

  .profile-chip-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-step {
    opacity: 1;
    transform: none;
  }
}
