@import url('./components.css?v=auth-3');

:root {
  --ink: #243f36;
  --muted: #7b827b;
  --green: #285b49;
  --green-hover: #1d4638;
  --accent: #d57452;
  --paper: #fcfbf8;
  --line: #e8e9e2;
  --mint: #e6efe7;
  --peach: #f7e8d9;
  --radius: 18px;
  --control-height: 48px;
  --control-font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
img,
svg {
  vertical-align: middle;
}
img {
  max-width: 100%;
}
button,
input,
textarea,
select {
  color: var(--ink);
}
button {
  border: 0;
  background: none;
}
input,
select,
textarea {
  min-width: 0;
}
textarea {
  resize: vertical;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 550;
}
h1 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -1.9px;
}
h2 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -1px;
}
h3 {
  font-size: 17px;
  line-height: 1.35;
}
p {
  margin-bottom: 16px;
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
:focus-visible {
  outline: 3px solid #cf9255;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.container {
  max-width: 1220px;
  width: calc(100% - 96px);
  margin: 0 auto;
}
.icon {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
}
.mint {
  background: var(--mint);
}
.peach {
  background: var(--peach);
}
.lavender {
  background: #eae7f2;
}
.rose {
  background: #f6e5e6;
}
.yellow {
  background: #f5eed8;
}
.blue {
  background: #e2edf1;
}
.white {
  background: white;
}
.muted {
  color: var(--muted);
}
.accent {
  color: var(--accent);
}
.small {
  font-size: 13px;
}
.full {
  width: 100%;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip-link:focus {
  display: block;
  padding: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  padding: 14px 23px;
  font-weight: 550;
  border: 1px solid transparent;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  color: white;
  background: var(--green);
}
.button.primary:hover {
  background: var(--green-hover);
}
.button.outlined {
  border-color: #d3dcd2;
  background: transparent;
}
.button.outlined:hover {
  background: #edf1e9;
}
.button.small {
  padding: 10px 16px;
  font-size: 13px;
}
.button .icon {
  width: 19px;
  height: 19px;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.icon-button:hover {
  background: var(--mint);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 550;
}
.text-link:hover {
  color: var(--accent);
}
.text-button {
  padding: 0;
  font-size: inherit;
}
.pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
}
.pill .icon {
  width: 16px;
  height: 16px;
}
.overline {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 10px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  border: 1px solid #dfe6da;
  padding: 6px 12px;
  border-radius: 30px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6f9373;
}
.avatar {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.avatar.tiny {
  width: 33px;
  height: 33px;
  font-size: 11px;
}
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 46px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 750;
  font-size: 31px;
  letter-spacing: -1.8px;
  line-height: 1;
}
.brand > svg {
  margin-right: 9px;
}
.brand-dot {
  color: var(--accent);
}
.main-nav {
  display: flex;
  gap: 27px;
  align-items: center;
  font-size: 13px;
}
.main-nav a {
  padding: 8px 0;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 23px;
  align-items: center;
  margin-left: auto;
}
.login-link {
  font-size: 13px;
}
.account-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}
.mobile-menu {
  display: none;
}
.account-nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.account-nav > div {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
  font-size: 13px;
}
.account-nav .active {
  color: var(--accent);
}
.account-nav form {
  margin-left: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 35px;
  min-height: 530px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.hero h1 {
  margin: 24px 0;
  font-size: clamp(45px, 4.2vw, 64px);
  line-height: 1.12;
  letter-spacing: -2.6px;
  font-weight: 530;
}
.accent-word {
  position: relative;
  color: var(--accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}
.accent-word svg {
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 100%;
  height: 16px;
  stroke: #daa283;
  fill: none;
  stroke-width: 2.3px;
}
.hero-description {
  font-size: 17px;
  color: #798178;
  line-height: 1.8;
  margin: 30px 0 27px;
}
.hero-search {
  display: flex;
  padding: 7px;
  background: #fff;
  border: 1px solid #dfe4da;
  box-shadow: 0 8px 25px #29423205;
  border-radius: 12px;
  max-width: 536px;
}
.search-input {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  height: var(--control-height);
}
.search-input > .icon {
  margin-left: 12px;
  color: #819085;
}
.search-input input {
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 10px 12px;
  font-size: var(--control-font-size);
  line-height: 1.5;
  outline-offset: -1px;
}
.hero-search .search-input {
  flex: 1;
}
.hero-search .button {
  min-height: var(--control-height);
  padding: 11px 21px;
}
.search-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #8a8d84;
  margin-top: 13px;
  font-size: 11px;
}
.search-examples a {
  border-bottom: 1px solid #dddacf;
  line-height: 1.7;
}
.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 31px;
  font-size: 11px;
  color: #687b6b;
}
.hero-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hero-reassurance .icon {
  width: 15px;
  height: 15px;
}
.hero-visual {
  height: 470px;
  position: relative;
}
.hero-orbit {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
}
.orbit-one {
  background: #f1eee3;
  right: 13px;
  top: 23px;
}
.orbit-two {
  border: 1px solid #e6e3d7;
  right: -1px;
  top: 7px;
  width: 418px;
  height: 418px;
}
.hero-person {
  position: absolute;
  width: 290px;
  right: 71px;
  top: 57px;
  border-radius: 17px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 15px 40px #49402b0d;
  transform: rotate(4deg);
}
.hero-person-top {
  height: 256px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.hero-person-top .pill {
  position: absolute;
  top: 13px;
  left: 13px;
  font-size: 10px;
  z-index: 1;
  background: #fffcf4e8;
}
.hero-person-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 12px;
}
.hero-person-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 9px 10px;
}
.hero-person-bottom h3 {
  font-size: 16px;
  margin-bottom: 3px;
}
.hero-person-bottom p {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 0;
}
.circle-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dfe4dc;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  flex-shrink: 0;
}
.circle-link .icon {
  width: 17px;
  height: 17px;
}
.floating-note {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: -7px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 17px 19px;
  background: white;
  border: 1px solid #eeeee6;
  border-radius: 12px;
  transform: rotate(-6deg);
  box-shadow: 0 7px 25px #24392f06;
  font-size: 11px;
  line-height: 1.7;
}
.note-icon {
  background: var(--mint);
  padding: 10px;
  border-radius: 50%;
}
.note-icon .icon {
  width: 20px;
  height: 20px;
}
.floating-note strong {
  font-weight: 600;
}
.floating-task {
  display: flex;
  gap: 12px;
  align-items: center;
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 7px;
  padding: 14px 18px 14px 12px;
  background: white;
  border: 1px solid #eceee5;
  border-radius: 12px;
  transform: rotate(-4deg);
  box-shadow: 0 8px 30px #24392f08;
}
.floating-task strong {
  display: block;
  font-size: 13px;
}
.floating-task div > span {
  font-size: 10px;
  color: var(--muted);
}
.task-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 10px;
}
.task-check {
  background: var(--green);
  color: white;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  margin-left: 10px;
}
.task-check .icon {
  width: 16px;
  height: 16px;
  margin: 2px;
}
.decor-spark {
  position: absolute;
  color: var(--accent);
}
.spark-one {
  right: 21px;
  top: 75px;
  font-size: 51px;
  transform: rotate(10deg);
}
.spark-two {
  left: 5px;
  top: 255px;
  font-size: 39px;
}
.handwritten {
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: #8b8d7b;
  position: absolute;
  right: 13px;
  bottom: 5px;
  transform: rotate(-7deg);
}
.handwritten svg {
  position: absolute;
  right: -25px;
  top: -37px;
  transform: rotate(-75deg);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 29px;
  gap: 24px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading .text-link {
  margin-bottom: 6px;
}
.section-heading.compact h2 {
  font-size: 24px;
  letter-spacing: -0.6px;
}
.categories-section {
  padding-top: 16px;
  padding-bottom: 36px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  padding: 20px 3px;
  border: 1px solid #e9e8e1;
  border-radius: 12px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  background: #fdfdfa;
}
.category-item:hover {
  border-color: #9fb5a2;
  transform: translateY(-3px);
}
.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon .icon {
  width: 25px;
  height: 25px;
  stroke-width: 1.4px;
}
.principles-strip {
  border-block: 1px solid var(--line);
  background: #f5f6ee;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 29px;
  gap: 38px;
}
.principles-grid > div {
  display: flex;
  gap: 15px;
  align-items: start;
}
.principle-icon {
  padding-top: 5px;
  color: #78937c;
}
.principles-grid h3 {
  font-size: 14px;
  margin-bottom: 5px;
}
.principles-grid p {
  font-size: 12px;
  color: #808576;
  margin: 0;
  max-width: 240px;
}
.featured-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}
.profile-card {
  border: 1px solid #e8e8e0;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px #3c46300b;
}
.profile-art {
  height: 193px;
  position: relative;
  overflow: hidden;
  margin: 7px;
  border-radius: 9px;
}
.portrait-link {
  display: block;
  height: 100%;
}
.portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-top: 14px;
}
.availability {
  position: absolute;
  bottom: 9px;
  left: 9px;
  background: #ffffffed;
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}
.availability i {
  width: 5px;
  height: 5px;
  background: #75a376;
  border-radius: 50%;
}
.favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ffffffdd;
  width: 30px;
  height: 30px;
}
.favorite .icon {
  width: 16px;
  height: 16px;
}
.favorite.is-saved {
  color: var(--accent);
}
.favorite.is-saved .icon {
  fill: #f7ddd0;
}
.profile-card-body {
  padding: 13px 18px 16px;
}
.profile-card .overline {
  font-size: 10px;
  margin-bottom: 5px;
}
.profile-card h3 {
  font-size: 17px;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.profile-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #7f897d;
  font-size: 11px;
  margin-bottom: 12px;
}
.profile-meta .icon {
  width: 12px;
  height: 12px;
}
.experience {
  font-size: 11px;
  color: #617761;
  margin-bottom: 15px;
}
.profile-card-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  gap: 5px;
}
.profile-card-bottom strong {
  font-size: 14px;
  font-weight: 600;
}
.profile-card-bottom small {
  font-size: 10px;
  color: var(--muted);
}
.demo-caption {
  font-size: 11px;
  color: #969a8f;
  margin: 18px 0 0;
}
.how-banner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 32px 38px;
  background: #edf2e8;
  border-radius: 19px;
}
.how-banner h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
.how-banner p {
  font-size: 13px;
  color: #7a8574;
}
.how-banner .button {
  margin-top: 9px;
}
.how-steps {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 27px;
  max-width: 370px;
}
.how-steps li {
  display: flex;
  gap: 21px;
}
.how-steps li > span {
  font-family: Georgia, serif;
  font-size: 30px;
  color: #9aac92;
  line-height: 1.15;
}
.how-steps h3 {
  font-size: 15px;
  margin-bottom: 4px;
}
.how-steps p {
  margin: 0;
  font-size: 12px;
}
.pro-invite {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 36px 40px;
}
.pro-invite h2 {
  font-size: 22px;
  margin-bottom: 5px;
}
.pro-invite p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.pro-invite > .button {
  margin-left: auto;
}
.footer {
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  gap: 35px;
  align-items: center;
  padding-block: 29px;
}
.footer-top .brand {
  font-size: 26px;
}
.footer-top p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.footer-top > div {
  display: flex;
  gap: 25px;
  margin-left: auto;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-block: 17px 24px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #91968b;
}
.footer-bottom .icon {
  width: 12px;
  height: 12px;
  margin-left: 3px;
}

@media (min-width: 1600px) {
  .hero {
    min-height: 550px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 56px);
  }
  .header-inner {
    gap: 28px;
  }
  .main-nav {
    gap: 20px;
    font-size: 12px;
  }
  .header-actions {
    gap: 15px;
  }
  .hero {
    gap: 15px;
  }
  .hero-visual {
    transform: scale(0.87);
    transform-origin: right center;
    margin-left: -50px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .category-grid {
    gap: 8px;
  }
  .category-item {
    font-size: 10px;
  }
  .profile-grid {
    gap: 13px;
  }
  .profile-card-body {
    padding: 12px;
  }
  .profile-card h3 {
    font-size: 15px;
  }
  .profile-card-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 74px;
  }
  .brand {
    font-size: 29px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu {
    display: inline-flex;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--paper);
    z-index: 10;
    box-shadow: 0 10px 20px #1d3f3210;
    justify-content: center;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-visual {
    transform: scale(0.72);
    margin-left: -130px;
  }
  .hero-search {
    max-width: 390px;
  }
  .hero-search .button {
    padding: 12px;
    font-size: 13px;
  }
  .hero-search .button .icon {
    display: none;
  }
  .hero-reassurance {
    gap: 8px;
    flex-direction: column;
  }
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .category-item {
    font-size: 12px;
    padding: 17px 5px;
  }
  .principles-grid {
    gap: 18px;
  }
  .principles-grid > div {
    gap: 9px;
  }
  .principles-grid h3 {
    font-size: 12px;
  }
  .principles-grid p {
    font-size: 11px;
  }
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .profile-art {
    height: 225px;
  }
  .profile-card h3 {
    font-size: 18px;
  }
  .profile-card-body {
    padding: 17px;
  }
  .how-banner {
    padding: 32px;
    gap: 25px;
  }
  .how-banner h2 {
    font-size: 27px;
  }
  .how-steps {
    max-width: 290px;
  }
  .pro-invite {
    flex-wrap: wrap;
  }
  .pro-invite > .button {
    margin-left: 70px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  :root {
    --control-font-size: 16px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    gap: 10px;
  }
  .header .brand {
    font-size: 26px;
  }
  .header .brand svg {
    width: 28px;
    margin-right: 6px;
  }
  .header-register {
    padding: 10px;
    font-size: 12px;
  }
  .header-actions {
    gap: 10px;
  }
  .account-link > span:last-child {
    display: none;
  }
  .account-nav > div {
    gap: 17px;
    overflow: auto;
    white-space: nowrap;
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 0;
  }
  .hero h1 {
    font-size: 45px;
    margin-top: 23px;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 29px;
    margin-bottom: 23px;
  }
  .hero-search {
    max-width: none;
  }
  .hero-search .button {
    padding: 13px 20px;
  }
  .hero-reassurance {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 21px;
    gap: 8px;
    font-size: 10px;
  }
  .hero-visual {
    height: 375px;
    width: 400px;
    max-width: 115%;
    margin: -20px -6px -10px -12px;
    transform: scale(0.78);
    transform-origin: center;
  }
  .hero-person {
    right: 47px;
    top: 39px;
  }
  .hero-orbit {
    top: 0;
    right: 0;
  }
  .floating-note {
    top: 0;
    left: -1px;
  }
  .floating-task {
    bottom: -17px;
    left: 0;
  }
  .handwritten {
    display: none;
  }
  .spark-one {
    right: 0;
  }
  .section-heading {
    align-items: center;
    gap: 12px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading .text-link {
    font-size: 11px;
    gap: 5px;
  }
  .section-heading.compact h2 {
    font-size: 19px;
  }
  .category-grid {
    gap: 8px;
  }
  .category-item {
    font-size: 9px;
    gap: 10px;
    border-radius: 10px;
    padding: 13px 1px;
    text-align: center;
  }
  .category-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }
  .category-icon .icon {
    width: 23px;
    height: 23px;
  }
  .categories-section {
    padding-bottom: 31px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .principles-grid > div {
    gap: 16px;
  }
  .principles-grid h3 {
    font-size: 14px;
  }
  .principles-grid p {
    max-width: 290px;
    font-size: 12px;
  }
  .featured-section {
    padding-block: 37px;
  }
  .featured-section .section-heading {
    align-items: end;
  }
  .profile-grid {
    gap: 11px;
  }
  .profile-art {
    height: 153px;
    margin: 5px;
  }
  .availability {
    font-size: 7px;
    padding: 3px 5px;
    left: 5px;
    bottom: 6px;
  }
  .profile-card-body {
    padding: 10px 11px;
  }
  .profile-card h3 {
    font-size: 14px;
    line-height: 1.3;
  }
  .profile-card .overline {
    font-size: 9px;
  }
  .profile-meta {
    font-size: 9px;
  }
  .profile-card-bottom strong {
    font-size: 12px;
  }
  .profile-card-bottom small {
    font-size: 9px;
  }
  .profile-card-bottom .circle-link {
    display: none;
  }
  .experience {
    font-size: 10px;
  }
  .how-banner {
    flex-direction: column;
    padding: 25px;
    gap: 18px;
  }
  .how-banner h2 {
    font-size: 28px;
  }
  .how-steps {
    max-width: none;
    gap: 22px;
  }
  .pro-invite {
    padding-block: 35px;
    gap: 13px;
  }
  .pro-invite h2 {
    font-size: 19px;
  }
  .pro-invite p {
    font-size: 11px;
    max-width: 245px;
  }
  .pro-invite > .button {
    margin-left: 0;
    width: 100%;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 18px;
    padding-block: 25px;
  }
  .footer-top > div {
    margin-left: 0;
    width: 100%;
  }
  .footer-bottom {
    gap: 9px;
    font-size: 9px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 8px;
  }
  .header-actions {
    gap: 8px;
  }
  .header .brand {
    font-size: 24px;
    gap: 3px;
  }
  .header .brand svg {
    width: 25px;
  }
  .header-register {
    padding-inline: 8px;
    font-size: 11px;
  }
  .header .login-link {
    font-size: 12px;
  }
  .header .mobile-menu {
    width: 32px;
  }
}
