html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

:root {
  --landing-header-height: 78px;
  --landing-header-height-mobile: 132px;
}

.landing-body {
  margin: 0;
  color: #f3f1ea;
  background:
    radial-gradient(circle at top, rgba(180, 145, 41, 0.12), transparent 30%),
    linear-gradient(180deg, #050505 0%, #090909 48%, #050505 100%);
  font-family: "Inter", sans-serif;
}

.landing-body.auth-modal-open {
  overflow: hidden;
}

.landing-page {
  min-height: 100vh;
  background: transparent;
}

.landing-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background: rgba(2, 2, 2, 0.9);
  border-bottom: 1px solid rgba(214, 186, 71, 0.14);
  backdrop-filter: blur(16px);
}

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

.landing-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #f0df73;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(214, 186, 71, 0.08));
  border: 1px solid rgba(214, 186, 71, 0.16);
}

.landing-brand__logo {
  width: 34px;
  height: 34px;
  display: block;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.landing-nav a {
  color: #f0ede5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
  color: #d6ba47;
  transform: translateY(-1px);
}

.landing-nav a.active {
  color: #d6ba47;
}

.landing-nav__cta,
.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6e27a 0%, #e0c44b 100%);
  color: #090805;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(255, 233, 144, 0.48);
  box-shadow: 0 18px 40px rgba(212, 185, 70, 0.18), inset 0 1px 0 rgba(255, 247, 200, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, color 0.2s ease;
}

.landing-nav__cta:hover,
.landing-nav__cta:focus-visible,
.landing-button:hover,
.landing-button:focus-visible {
  color: #090805;
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(212, 185, 70, 0.26), inset 0 1px 0 rgba(255, 249, 214, 0.48);
  filter: saturate(1.05);
}

.landing-nav .landing-nav__cta {
  min-height: 48px;
  padding: 0 24px;
  font-size: 0.94rem;
  font-weight: 800;
  color: #090805;
}

.landing-button--secondary {
  background: rgba(214, 186, 71, 0.12);
  color: #f3f1ea;
  border: 1px solid rgba(214, 186, 71, 0.35);
  box-shadow: none;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--landing-header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: var(--landing-header-height);
}

.hero-section__media,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__media img,
.hero-section__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.64) 60%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.24) 55%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 110px 0 70px;
}

.hero-section__text {
  max-width: 760px;
}

.hero-section__text h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-section__text p {
  max-width: 620px;
  margin: 22px auto 34px;
  color: rgba(243, 241, 234, 0.82);
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(214, 186, 71, 0.15);
  color: rgba(255, 247, 214, 0.74);
  background:
    linear-gradient(135deg, rgba(54, 32, 18, 0.88) 0%, rgba(27, 21, 18, 0.82) 36%, rgba(12, 12, 12, 0.9) 100%),
    radial-gradient(circle at 22% 28%, rgba(202, 107, 50, 0.36), transparent 28%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.1), transparent 16%);
}

.hero-placeholder::after {
  content: "";
  position: absolute;
  inset: auto -24% -8% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 186, 71, 0.24) 0%, transparent 70%);
  filter: blur(10px);
}

.hero-placeholder span {
  position: relative;
  z-index: 1;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-placeholder--hero {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.landing-section {
  padding: 110px 0;
  scroll-margin-top: calc(var(--landing-header-height) + 24px);
}

.landing-section--benefits {
  padding-top: 76px;
}

.landing-section--modalities {
  background: rgba(255, 255, 255, 0.03);
  padding-bottom: 130px;
}

.landing-section--cta {
  padding-bottom: 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #d6ba47;
  font-size: 1.2rem;
  font-weight: 700;
}

.section-heading h2,
.story-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.section-heading h2 span,
.story-copy h2 span,
.cta-panel h2 span {
  color: #d6ba47;
}

.section-heading p,
.story-copy p,
.cta-panel p,
.landing-footer p,
.landing-footer li,
.info-card p,
.modality-card p,
.testimonial-card p {
  color: rgba(243, 241, 234, 0.68);
  line-height: 1.7;
}

.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.info-card,
.testimonial-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.92) 0%, rgba(18, 18, 18, 0.96) 100%);
  border: 1px solid rgba(214, 186, 71, 0.12);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.info-card__icon,
.testimonial-card__stars {
  color: #d6ba47;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.testimonial-card {
  height: 100%;
}

.info-card h3,
.modality-card h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.modality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 60px;
}

.modality-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #111111;
  border: 1px solid rgba(214, 186, 71, 0.12);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.modality-card:hover {
  transform: scale(1.03);
  border-color: rgba(214, 186, 71, 0.30);
}

.modality-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}

.modality-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modality-card:hover .modality-card__media img {
  transform: scale(1.1);
}

.modality-card__media .hero-placeholder--card {
  min-height: 0;
  height: 100%;
}

.modality-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.45), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
}

.modality-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  color: #f5f2ea;
}

.modality-card__body p {
  font-size: 0.89rem;
  color: #9ca3af;
  margin: 0 0 18px;
  line-height: 1.5;
}

.modality-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e4d46a;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.modality-card:hover .modality-card__link {
  gap: 10px;
}

.modality-card__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.landing-section--collaborators {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(214, 186, 71, 0.04)),
    rgba(5, 5, 5, 0.96);
}

.collaborator-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}

.collaborator-stat {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 22px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.92) 0%, rgba(18, 18, 18, 0.98) 100%);
  border: 1px solid rgba(214, 186, 71, 0.14);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.collaborator-stat strong {
  color: #d6ba47;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.collaborator-stat span {
  color: rgba(243, 241, 234, 0.68);
  line-height: 1.5;
}

.collaborator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.collaborator-card {
  overflow: hidden;
  border-radius: 26px;
  background: #111111;
  border: 1px solid rgba(214, 186, 71, 0.12);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.collaborator-card:hover,
.collaborator-card:focus-within {
  border-color: rgba(214, 186, 71, 0.46);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.collaborator-card__portrait {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214, 186, 71, 0.52), rgba(101, 58, 35, 0.74)),
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    #171717;
}

.collaborator-card:nth-child(2n) .collaborator-card__portrait {
  background:
    linear-gradient(135deg, rgba(214, 186, 71, 0.5), rgba(60, 70, 82, 0.72)),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    #171717;
}

.collaborator-card:nth-child(3n) .collaborator-card__portrait {
  background:
    linear-gradient(135deg, rgba(194, 111, 56, 0.58), rgba(214, 186, 71, 0.42)),
    radial-gradient(circle at 30% 74%, rgba(255, 255, 255, 0.18), transparent 28%),
    #171717;
}

.collaborator-card__portrait::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 247, 214, 0.28);
  border-radius: 50%;
}

.collaborator-card__portrait span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  color: #090805;
  background: rgba(246, 226, 122, 0.88);
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.collaborator-card__body {
  padding: 24px;
}

.collaborator-card h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
}

.collaborator-card__specialty {
  margin: 0 0 16px;
  color: #d6ba47;
  font-weight: 700;
}

.collaborator-card__body > p:not(.collaborator-card__specialty) {
  min-height: 92px;
  margin: 0 0 22px;
  color: rgba(243, 241, 234, 0.68);
  text-align: justify;
  line-height: 1.65;
}

.collaborator-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.collaborator-card__meta div {
  display: grid;
  gap: 4px;
  min-height: 68px;
  align-content: center;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 186, 71, 0.1);
}

.collaborator-card__meta dt,
.collaborator-card__meta dd {
  margin: 0;
}

.collaborator-card__meta dt {
  color: rgba(243, 241, 234, 0.58);
  font-size: 0.74rem;
}

.collaborator-card__meta dd {
  color: #f3f1ea;
  font-size: 0.9rem;
  font-weight: 700;
}

.collaborator-card__body > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6e27a 0%, #e0c44b 100%);
  color: #090805;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.collaborator-card__body > a:hover,
.collaborator-card__body > a:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.collaborator-cta {
  margin-top: 64px;
  padding: 72px 24px;
  text-align: center;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(214, 186, 71, 0.06), rgba(214, 186, 71, 0.14), rgba(214, 186, 71, 0.06)),
    rgba(15, 15, 15, 0.96);
  border: 1px solid rgba(214, 186, 71, 0.16);
}

.collaborator-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.collaborator-cta h2 span {
  color: #d6ba47;
}

.collaborator-cta p {
  max-width: 660px;
  margin: 18px auto 30px;
  color: rgba(243, 241, 234, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.hero-placeholder--story {
  min-height: 540px;
  border-radius: 28px;
}

.story-copy .landing-button {
  margin-top: 12px;
}

.cta-panel {
  padding: 82px 24px;
  text-align: center;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(214, 186, 71, 0.06), rgba(214, 186, 71, 0.14), rgba(214, 186, 71, 0.06)),
    rgba(15, 15, 15, 0.96);
  border: 1px solid rgba(214, 186, 71, 0.16);
}

.cta-panel p {
  margin: 18px auto 30px;
  max-width: 620px;
}

.cta-panel--full {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 100px 24px;
}

.landing-footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(214, 186, 71, 0.12);
}

main {
  padding-top: var(--landing-header-height);
}

.landing-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.landing-footer h3,
.landing-footer h4 {
  margin: 0 0 16px;
  color: #d6ba47;
}

.landing-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-footer a {
  color: rgba(243, 241, 234, 0.76);
  text-decoration: none;
}

.landing-footer a:hover,
.landing-footer a:focus-visible {
  color: #d6ba47;
}

.landing-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 186, 71, 0.08);
  text-align: center;
}

.auth-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.auth-modal {
  position: relative;
  width: min(100%, 448px);
  max-height: calc(100vh - 48px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(33, 33, 37, 0.98) 0%, rgba(26, 26, 29, 0.98) 100%);
  border: 1px solid rgba(214, 186, 71, 0.24);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  margin: auto;
}

.auth-modal__content {
  padding: 34px 32px 28px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: transparent;
  color: #a9aec2;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.auth-modal__close:hover,
.auth-modal__close:focus-visible {
  color: #ffffff;
}

.auth-modal__header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-modal__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f7f4ec;
}

.auth-modal__header p {
  margin: 10px 0 0;
  color: #99a0b5;
  font-size: 1.08rem;
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-two-factor {
  display: grid;
  gap: 18px;
}

.auth-two-factor__copy {
  display: grid;
  gap: 10px;
}

.auth-two-factor__copy p {
  margin: 0;
  color: #cfd5e4;
  line-height: 1.6;
}

.auth-qr-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 186, 71, 0.16);
}

.auth-qr-card img {
  width: min(100%, 220px);
  height: auto;
  display: block;
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
}

.auth-qr-card p {
  margin: 0;
  color: #cfd5e4;
  text-align: center;
  line-height: 1.5;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field label {
  color: #f1ede1;
  font-size: 1rem;
  font-weight: 600;
}

.auth-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(214, 186, 71, 0.28);
  background: #060606;
  color: #f7f4ec;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input::placeholder {
  color: #777d8e;
}

.auth-field input:focus {
  border-color: #e6cc55;
  box-shadow: 0 0 0 3px rgba(230, 204, 85, 0.12);
}

#login-otp-code {
  text-align: center;
  letter-spacing: 0.35em;
  font-size: 1.18rem;
  font-weight: 700;
}

.auth-field--error input {
  border-color: #ff7272;
  box-shadow: 0 0 0 3px rgba(255, 114, 114, 0.12);
}

.auth-field__error {
  min-height: 18px;
  color: #ff9b9b;
  font-size: 0.86rem;
}

.auth-submit {
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6e27a 0%, #e0c44b 100%);
  color: #090805;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.auth-submit:hover,
.auth-submit:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.03);
}

.auth-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.auth-modal__links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  text-align: center;
}

.auth-link {
  border: none;
  background: transparent;
  padding: 0;
  color: #99a0b5;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
}

.auth-link:hover,
.auth-link:focus-visible {
  color: #f7f4ec;
}

.auth-link--accent {
  color: #f0df73;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.auth-feedback {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.auth-feedback--error {
  color: #ffd4d4;
  background: rgba(162, 39, 39, 0.26);
  border: 1px solid rgba(255, 114, 114, 0.24);
}

.auth-feedback--success {
  color: #d8ffdb;
  background: rgba(40, 129, 66, 0.26);
  border: 1px solid rgba(92, 214, 126, 0.22);
}

@media (max-width: 1100px) {
  .benefit-grid,
  .testimonial-grid,
  .collaborator-grid,
  .modality-grid,
  .landing-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .landing-shell {
    width: min(100% - 32px, 100%);
  }

  .landing-header__inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .landing-header {
    min-height: var(--landing-header-height-mobile);
  }

  .landing-nav {
    justify-content: center;
    gap: 14px 18px;
  }

  .landing-nav__cta,
  .landing-button {
    min-height: 48px;
    padding: 0 22px;
  }

  .hero-section {
    min-height: auto;
    scroll-margin-top: var(--landing-header-height-mobile);
  }

  .hero-section__content {
    padding: 96px 0 64px;
  }

  .landing-section {
    padding: 82px 0;
    scroll-margin-top: calc(var(--landing-header-height-mobile) + 20px);
  }

  .benefit-grid,
  .testimonial-grid,
  .collaborator-stats,
  .collaborator-grid,
  .modality-grid,
  .landing-footer__grid {
    grid-template-columns: 1fr;
  }

  .collaborator-card__body > p:not(.collaborator-card__specialty) {
    min-height: auto;
  }

  .collaborator-cta {
    padding: 60px 18px;
  }

  .hero-placeholder--card,
  .hero-placeholder--story {
    min-height: 320px;
  }

  .cta-panel {
    padding: 60px 18px;
  }

  main {
    padding-top: var(--landing-header-height-mobile);
  }

  .auth-modal {
    width: min(100% - 24px, 448px);
    max-height: calc(100vh - 24px);
  }

  .auth-modal__content {
    padding: 30px 20px 24px;
    max-height: calc(100vh - 24px);
  }
}

/* User Type Selection Modal */
.auth-user-type-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.auth-user-type-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(214, 186, 71, 0.24);
  border-radius: 16px;
  background: rgba(33, 33, 37, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.auth-user-type-option:hover,
.auth-user-type-option:focus {
  border-color: #d6ba47;
  background: rgba(33, 33, 37, 0.8);
  outline: none;
}

.auth-user-type-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.auth-user-type-option h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: #f3f1ea;
}

.auth-user-type-option p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator__mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(214, 186, 71, 0.7);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-indicator__wheel {
  width: 4px;
  height: 10px;
  background: rgba(214, 186, 71, 0.8);
  border-radius: 2px;
  animation: hero-wheel-scroll 1.6s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes hero-wheel-scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

