:root {
  --bg: #efede7;
  --bg-deep: #d8d2c7;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --ink: #101113;
  --ink-soft: #39414c;
  --muted: #697180;
  --line: rgba(16, 17, 19, 0.08);
  --line-strong: rgba(16, 17, 19, 0.16);
  --brand: #0c0d10;
  --brand-soft: #1d222b;
  --accent: #cba66d;
  --accent-soft: rgba(203, 166, 109, 0.18);
  --shadow: 0 24px 60px rgba(18, 24, 32, 0.12);
  --shadow-strong: 0 28px 70px rgba(9, 12, 18, 0.18);
  --radius: 22px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --focus-ring: 0 0 0 4px rgba(203, 166, 109, 0.14);
  --shadow-card-soft: 0 18px 38px rgba(18, 24, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(0, 0, 0, 0.08), transparent 24%),
    linear-gradient(150deg, #f7f5ef 0%, #ebe7de 45%, #ddd7cc 100%);
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
}

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

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 30%),
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.08) 18px,
      rgba(255, 255, 255, 0.08) 19px
    );
  opacity: 0.55;
}

body.home-screen {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(180deg, #f7f5ef 0%, #f1ede5 48%, #ebe6dc 100%);
}

body.home-screen::before {
  opacity: 0.34;
}

body.drawer-open {
  overflow: hidden;
}

.marketing-home {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-4);
  display: grid;
  gap: var(--space-5);
}

.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  min-height: 56px;
}

.top-nav__menu,
.app-drawer__close {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 17, 19, 0.08);
  color: #151a22;
  box-shadow: 0 8px 16px rgba(18, 24, 32, 0.06);
}

.top-nav__menu svg,
.app-drawer__close svg {
  width: 22px;
  height: 22px;
}

.top-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #151a22;
}

.top-nav__brand:hover {
  text-decoration: none;
}

.top-nav__brand-logo {
  width: 108px;
  height: 36px;
  padding: 5px 7px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 19, 0.08);
  box-shadow: 0 8px 18px rgba(18, 24, 32, 0.08);
}

.top-nav__brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-nav__brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.top-nav__brand-copy strong {
  font-size: 15px;
  line-height: 1.2;
  color: #131820;
}

.top-nav__brand-copy span {
  font-size: 12px;
  color: #717885;
}

.top-nav__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 17, 19, 0.08);
  color: #151a22;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(18, 24, 32, 0.06);
}

.top-nav__action:hover {
  text-decoration: none;
}

.app-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 20;
}

.app-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 356px);
  padding: var(--space-5);
  background: #ffffff;
  border-right: 1px solid rgba(16, 17, 19, 0.08);
  box-shadow: 16px 0 50px rgba(12, 18, 26, 0.16);
  transform: translateX(-104%);
  transition: transform 0.28s ease;
  z-index: 30;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: var(--space-5);
}

.app-drawer.is-open {
  transform: translateX(0);
}

.app-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.app-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.app-drawer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.app-drawer__logo {
  width: 98px;
  height: 34px;
  padding: 4px 6px;
  border-radius: 12px;
  background: #10141a;
}

.app-drawer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.app-drawer__brand strong {
  display: block;
  font-size: 15px;
  color: #151a22;
}

.app-drawer__brand p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #7b8290;
}

.app-drawer__close {
  background: rgba(16, 17, 19, 0.04);
  color: #151a22;
  border-color: rgba(16, 17, 19, 0.08);
  box-shadow: none;
}

.app-drawer__user {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #10141b 0%, #1b222c 100%);
  color: #fbf8f1;
  display: grid;
  gap: 6px;
}

.app-drawer__user-label {
  margin: 0;
  color: rgba(251, 248, 241, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-drawer__user strong {
  font-size: 18px;
  line-height: 1.3;
}

.app-drawer__user span {
  color: rgba(251, 248, 241, 0.74);
  font-size: 13px;
  line-height: 1.6;
}

.app-drawer__nav {
  display: grid;
  gap: var(--space-5);
  align-content: start;
  overflow-y: auto;
  padding-right: 4px;
}

.app-drawer__group {
  display: grid;
  gap: 8px;
}

.app-drawer__group-title {
  margin: 0 0 4px;
  color: #9b7440;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  color: #161c24;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  width: 100%;
}

.app-drawer__link:hover {
  text-decoration: none;
  background: rgba(16, 17, 19, 0.04);
}

.app-drawer__link.is-active {
  background: rgba(203, 166, 109, 0.14);
  border-color: rgba(203, 166, 109, 0.22);
  color: #78582b;
}

.app-drawer__link--button {
  box-shadow: none;
  background: transparent;
  color: #161c24;
  border: 1px solid transparent;
  padding: 0 12px;
}

.app-drawer__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  flex: 0 0 22px;
}

.app-drawer__icon svg {
  width: 22px;
  height: 22px;
}

.hidden {
  display: none !important;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 14%, rgba(203, 166, 109, 0.2), transparent 20%),
    linear-gradient(145deg, #10141b 0%, #161d26 58%, #1c2330 100%);
  color: #fbf8f1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(10, 14, 20, 0.18);
}

.hero-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d19e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-section__copy h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-section__copy p {
  margin: 16px 0 0;
  max-width: 620px;
  color: rgba(251, 248, 241, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.hero-section__actions,
.bottom-cta__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.primary-btn:hover,
.secondary-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.primary-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f0f2f4 100%);
  color: #10141a;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fbf8f1;
}

.secondary-btn--dark {
  background: rgba(16, 17, 19, 0.05);
  border-color: rgba(16, 17, 19, 0.1);
  color: #151a22;
}

.hero-section__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-5);
}

.hero-section__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(251, 248, 241, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-section__visual {
  display: grid;
  gap: var(--space-3);
  align-content: center;
}

.hero-panel {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-panel--main {
  padding: var(--space-5);
}

.hero-panel__tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d19e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(251, 248, 241, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.content-section,
.bottom-cta {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 17, 19, 0.06);
  box-shadow: 0 16px 34px rgba(18, 24, 32, 0.06);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.section-heading__eyebrow {
  margin: 0 0 8px;
  color: #9b7440;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.bottom-cta h2 {
  margin: 0;
  color: #131820;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.22;
}

.section-heading__aside {
  max-width: 280px;
  margin: 0;
  color: #697180;
  font-size: 14px;
  line-height: 1.7;
}

.section-heading__link {
  color: #1b222d;
  font-size: 14px;
  font-weight: 700;
}

.trust-grid,
.feature-grid,
.direction-grid {
  display: grid;
  gap: var(--space-4);
}

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

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

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

.trust-card,
.feature-card,
.direction-card {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(16, 17, 19, 0.06);
  box-shadow: 0 12px 24px rgba(18, 24, 32, 0.05);
}

.trust-card__index,
.direction-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(203, 166, 109, 0.12);
  color: #9b7440;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card strong,
.feature-card strong,
.direction-card strong {
  display: block;
  margin-top: 14px;
  color: #151a22;
  font-size: 20px;
  line-height: 1.45;
}

.trust-card p,
.feature-card p,
.direction-card p,
.bottom-cta p {
  margin: 10px 0 0;
  color: #5f6876;
  font-size: 14px;
  line-height: 1.75;
}

.feature-card {
  display: grid;
  gap: 0;
}

.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 17, 19, 0.05);
  color: #1d2530;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: var(--radius-lg);
  background: #ffffff;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  color: #151a22;
  font-size: 16px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #5f6876;
  font-size: 14px;
  line-height: 1.75;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.94);
}

.home-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 16px 40px;
  display: grid;
  gap: 20px;
}

.home-hero,
.home-section {
  border-radius: 24px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  box-shadow: 0 18px 40px rgba(18, 24, 32, 0.08);
}

.home-hero {
  padding: 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(218, 179, 110, 0.12), transparent 18%),
    linear-gradient(145deg, #0d1117 0%, #151b24 58%, #1b222d 100%);
  color: #fbf8f1;
}

.home-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.home-logo {
  width: 128px;
  height: 42px;
  padding: 6px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.home-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f2d19e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
  gap: 16px;
  align-items: stretch;
}

.home-hero__copy,
.home-hero__aside {
  min-width: 0;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-kicker {
  margin: 0 0 10px;
  color: #f2d19e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__copy h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.home-subtitle {
  margin: 16px 0 0;
  max-width: 560px;
  color: rgba(251, 248, 241, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.home-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.home-btn--primary {
  background: linear-gradient(135deg, #ffffff 0%, #f1f2f4 100%);
  color: #11161d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.home-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fbf8f1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-summary-card {
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 14px;
  align-content: start;
}

.home-summary-card__label {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d19e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-summary-card strong {
  font-size: 20px;
  line-height: 1.45;
}

.home-summary-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(251, 248, 241, 0.76);
  font-size: 14px;
  display: grid;
  gap: 10px;
}

.home-section {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.home-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-section__eyebrow {
  margin: 0 0 8px;
  color: #9b7440;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-section__header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  color: #131820;
}

.home-section__link {
  color: #222a35;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

.home-nav-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  min-height: 164px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 17, 19, 0.06);
  box-shadow: 0 10px 24px rgba(18, 24, 32, 0.06);
  color: #151a22;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.home-nav-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(203, 166, 109, 0.28);
  box-shadow: 0 16px 28px rgba(18, 24, 32, 0.08);
}

.home-nav-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 17, 19, 0.05);
  color: #1c2430;
}

.home-nav-card__icon svg {
  width: 22px;
  height: 22px;
}

.home-nav-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.home-nav-card p {
  margin: 0;
  color: #586270;
  font-size: 14px;
  line-height: 1.65;
}

.home-direction-card {
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 17, 19, 0.06);
  box-shadow: 0 10px 24px rgba(18, 24, 32, 0.05);
}

.home-direction-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(203, 166, 109, 0.12);
  color: #9b7440;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-direction-card strong {
  display: block;
  margin-top: 14px;
  color: #151a22;
  font-size: 20px;
  line-height: 1.4;
}

.home-direction-card p {
  margin: 10px 0 0;
  color: #586270;
  font-size: 14px;
  line-height: 1.7;
}

.home-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.home-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.05);
  color: #48515f;
  font-size: 13px;
  font-weight: 700;
}

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

.home-direction-card {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 220px;
}

.home-direction-card a {
  margin-top: 16px;
  width: fit-content;
  color: #161c24;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(203, 166, 109, 0.22), transparent 22%),
    linear-gradient(135deg, #090b0f 0%, #12161d 42%, #1a2029 100%);
  color: #faf8f3;
  text-align: center;
  padding: 48px 16px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero--compact {
  padding: 42px 16px 28px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.hero::before {
  width: 220px;
  height: 220px;
  right: -46px;
  top: -60px;
  background: radial-gradient(circle, rgba(203, 166, 109, 0.26), transparent 68%);
}

.hero::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  letter-spacing: 0.08em;
  font-size: clamp(28px, 4.6vw, 42px);
  font-weight: 800;
}

.hero p {
  position: relative;
  z-index: 1;
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(250, 248, 243, 0.76);
}

.brand-mark {
  position: absolute;
  top: 14px;
  right: 22px;
  width: 300px;
  height: 102px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  padding: 10px 12px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.container {
  max-width: 1120px;
  margin: -14px auto 0;
  padding: 0 18px 56px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: rise-in 0.45s ease both;
}

.card h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f7e7c7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tip {
  color: var(--muted);
  font-size: 14px;
}

.user-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background:
    linear-gradient(120deg, rgba(12, 13, 16, 0.94), rgba(31, 36, 45, 0.9)),
    var(--brand);
  color: #f8f7f2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.user-bar p,
.user-bar .tip {
  margin: 0;
  color: rgba(248, 247, 242, 0.84);
}

.flow-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 239, 0.92)),
    var(--panel-strong);
  border: 1px solid rgba(203, 166, 109, 0.24);
}

.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(16, 18, 22, 0.96), rgba(31, 36, 45, 0.92));
  color: #fbf7ef;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.launch-panel .eyebrow {
  background: rgba(255, 255, 255, 0.1);
}

.launch-panel__copy h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.launch-panel__copy .tip {
  margin-top: 12px;
  max-width: 640px;
  color: rgba(251, 247, 239, 0.78);
}

.launch-panel__stats {
  display: grid;
  gap: 12px;
}

.stat-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff7e8;
}

.stat-card span {
  color: rgba(251, 247, 239, 0.72);
  font-size: 14px;
}

.launch-panel--admin {
  margin-bottom: 20px;
}

.flow-card h2 {
  margin-bottom: 6px;
}

.flow-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.flow-card__head .eyebrow {
  background: rgba(203, 166, 109, 0.12);
  color: #7b6034;
}

.flow-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.flow-card__tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.06);
  color: #36404d;
  font-size: 13px;
  font-weight: 700;
}

.part-switch {
  margin-top: 12px;
}

.part-switch button {
  min-width: 220px;
}

.part-switch button.is-active {
  background:
    linear-gradient(135deg, #12151b 0%, #202733 100%);
  color: #fff8ef;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 28px rgba(13, 17, 23, 0.18);
}

#part-tip,
#profile-page-text,
#profile-message,
#progress-text,
#score-text,
#intake-summary,
#intake-page-info {
  margin: 4px 0 0;
}

#profile-page-text {
  color: var(--ink-soft);
  font-weight: 700;
}

.form-grid,
.profile-grid {
  display: grid;
  gap: 14px;
}

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

.profile-title {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 17, 19, 0.08);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #151821;
}

.profile-grid .full {
  grid-column: 1 / -1;
}

.form-grid label,
.profile-grid label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  color: #46505d;
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.form-grid label:focus-within,
.profile-grid label:focus-within {
  color: #171c24;
  transform: translateY(-1px);
}

.form-grid input,
.form-grid textarea,
.profile-grid input,
.profile-grid textarea,
.profile-grid select,
.admin-search {
  width: 100%;
  border: 1px solid rgba(18, 22, 28, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
  background: rgba(251, 249, 244, 0.92);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.profile-grid select,
.form-grid select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(244, 239, 230, 0.2)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 6.75L9 11.25L14 6.75' stroke='%23242830' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 14px center;
  background-size: auto, 18px 18px;
  cursor: pointer;
}

.profile-grid select:hover,
.form-grid select:hover {
  border-color: rgba(203, 166, 109, 0.52);
  background-color: #fffdfa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 18px rgba(20, 26, 36, 0.06);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder,
.profile-grid input::placeholder,
.profile-grid textarea::placeholder,
.admin-search::placeholder {
  color: #8a93a0;
}

.form-grid input:focus,
.form-grid textarea:focus,
.profile-grid input:focus,
.profile-grid textarea:focus,
.profile-grid select:focus,
.admin-search:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(203, 166, 109, 0.9);
  box-shadow: 0 0 0 4px rgba(203, 166, 109, 0.16);
  transform: translateY(-1px);
}

.resume-upload-field {
  display: grid;
  gap: 10px;
}

.resume-upload-field__label {
  font-size: 12px;
  font-weight: 700;
  color: #55606f;
  letter-spacing: 0.02em;
}

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

.resume-uploader {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(18, 22, 28, 0.09);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.92)),
    rgba(251, 249, 244, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 34px rgba(24, 31, 41, 0.07);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.resume-uploader:hover {
  transform: translateY(-1px);
  border-color: rgba(203, 166, 109, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 38px rgba(24, 31, 41, 0.1);
}

.resume-file-input:focus + .resume-uploader,
.resume-uploader:focus-within {
  border-color: rgba(203, 166, 109, 0.92);
  box-shadow:
    var(--focus-ring),
    0 22px 38px rgba(24, 31, 41, 0.1);
}

.resume-uploader.is-selected {
  border-color: rgba(203, 166, 109, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 232, 0.96)),
    rgba(255, 251, 243, 0.95);
}

.resume-uploader__badge {
  min-width: 52px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(20, 26, 36, 0.96), rgba(41, 50, 64, 0.94));
  color: #fff3d9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 22px rgba(16, 20, 29, 0.18);
}

.resume-uploader__copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.resume-uploader__copy strong {
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.resume-uploader__copy span {
  color: #667085;
  font-size: 12px;
  line-height: 1.6;
}

.resume-uploader__action {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 22, 28, 0.05);
  border: 1px solid rgba(18, 22, 28, 0.07);
  color: #18202b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.resume-uploader.is-selected .resume-uploader__action {
  background: linear-gradient(135deg, rgba(203, 166, 109, 0.18), rgba(155, 116, 64, 0.12));
  border-color: rgba(203, 166, 109, 0.26);
  color: #7a5526;
}

.auth-card {
  max-width: 520px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.94)),
    var(--panel-strong);
  box-shadow: var(--shadow-strong);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.auth-side {
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(12, 14, 18, 0.95), rgba(28, 34, 42, 0.92));
  color: #fbf7ef;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.auth-side h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
}

.auth-side .tip {
  margin-top: 12px;
  color: rgba(251, 247, 239, 0.76);
}

.auth-side__list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.auth-side__list div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-side__list strong {
  color: #fff2d6;
  font-size: 16px;
}

.auth-side__list span {
  color: rgba(251, 247, 239, 0.72);
  font-size: 14px;
}

.auth-card .eyebrow {
  background: rgba(203, 166, 109, 0.12);
  color: #7b6034;
}

.brand-panel {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(245, 240, 232, 0.92));
}

.brand-panel img {
  width: min(760px, 100%);
  height: 210px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 231, 0.96));
  display: block;
  margin: 14px auto 0;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.question {
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: 20px;
  padding: 20px;
  margin: 16px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.94));
  box-shadow: 0 14px 30px rgba(20, 26, 36, 0.08);
}

.question h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.5;
}

.question-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6f562d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  min-height: 98px;
  padding: 16px 12px;
  border-radius: 20px;
  border: 1px solid rgba(16, 17, 19, 0.07);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.9));
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.option:hover {
  border-color: rgba(203, 166, 109, 0.58);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.99), rgba(248, 239, 225, 0.92));
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(20, 26, 36, 0.08);
}

.option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  accent-color: #111316;
  cursor: pointer;
}

.option-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  color: #1e2630;
}

.option-copy strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.option-copy span {
  font-size: 11px;
  line-height: 1.45;
  color: #67707d;
}

.option:has(input:checked) {
  border-color: rgba(203, 166, 109, 0.9);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.99), rgba(246, 233, 205, 0.94));
  box-shadow:
    var(--focus-ring),
    0 16px 28px rgba(20, 26, 36, 0.1);
}

.result-summary p {
  margin: 8px 0;
}

.report-actions {
  margin-top: 0;
  margin-bottom: 14px;
  justify-content: flex-end;
}

.result-hero {
  margin-bottom: 18px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(14, 17, 22, 0.96), rgba(33, 39, 48, 0.9));
  color: #fbf7ef;
  box-shadow: 0 16px 30px rgba(10, 13, 18, 0.16);
}

.result-kicker {
  margin: 0 0 6px;
  color: rgba(251, 247, 239, 0.7);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 42px);
  letter-spacing: 0.04em;
}

.result-lead {
  margin: 8px 0 0;
  color: rgba(251, 247, 239, 0.8);
}

.result-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.result-simple {
  padding: 20px;
}

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

.result-compact-card,
.detail-hero-card {
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 234, 0.92));
  border: 1px solid rgba(16, 17, 19, 0.08);
  box-shadow: 0 12px 24px rgba(18, 24, 32, 0.06);
}

.result-compact-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: #7b6034;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-compact-card strong {
  font-size: 20px;
  line-height: 1.35;
  color: #171b22;
}

.detail-grid-card {
  padding: 18px;
}

.report-panel {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.92));
  box-shadow: 0 14px 26px rgba(18, 24, 32, 0.07);
}

.report-panel--soft {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(250, 240, 231, 0.92));
}

.report-panel h3 {
  margin: 4px 0 10px;
  font-size: 18px;
}

.report-panel p {
  margin: 8px 0;
  color: #35404d;
}

.report-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #765b32;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.result-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #35404d;
}

.result-list li + li {
  margin-top: 8px;
}

.result-dimension-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 236, 0.92));
}

.result-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.report-block {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 236, 0.94));
  box-shadow: 0 12px 24px rgba(18, 24, 32, 0.06);
}

.result-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.result-card-header h3 {
  margin: 0;
  font-size: 20px;
}

.result-card-header p {
  margin: 0;
}

.dimension-bars {
  display: grid;
  gap: 12px;
}

.dimension-row {
  display: grid;
  gap: 8px;
}

.dimension-row__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #1f2630;
  font-weight: 700;
}

.dimension-row__meta strong {
  color: #7b5f34;
}

.dimension-row__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.08);
  overflow: hidden;
}

.dimension-row__bar {
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #b98b47 0%, #e2c48b 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.actions--toolbar {
  justify-content: flex-end;
}

.actions--compact button {
  min-width: 110px;
}

button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  background:
    linear-gradient(135deg, #0f1115 0%, #222a35 100%);
  color: #fff8ee;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.16s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  box-shadow: 0 12px 24px rgba(15, 17, 21, 0.16);
}

button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-soft);
  border-color: rgba(16, 17, 19, 0.1);
  box-shadow: 0 8px 18px rgba(16, 17, 19, 0.06);
}

button:hover {
  opacity: 0.97;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 17, 21, 0.18);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hidden {
  display: none;
}

.job-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.jobs-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.jobs-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.jobs-hero__chips span,
.job-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.06);
  color: #36404d;
  font-size: 13px;
  font-weight: 700;
}

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

.filter-grid label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  color: #46505d;
  font-weight: 700;
}

.jobs-library {
  display: grid;
  gap: 18px;
}

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

.pagination-card {
  position: sticky;
  bottom: 12px;
  z-index: 3;
}

.pagination-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.job-preview-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 233, 0.92));
  border: 1px solid rgba(16, 17, 19, 0.08);
  box-shadow: 0 14px 26px rgba(18, 24, 32, 0.07);
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.job-preview-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(203, 166, 109, 0.4);
  box-shadow: 0 18px 30px rgba(18, 24, 32, 0.1);
}

.job-preview-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.job-preview-card__head h3 {
  margin: 4px 0 0;
  font-size: 22px;
  color: #101113;
}

.job-preview-card__arrow {
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.06);
  color: #232833;
  font-size: 12px;
  font-weight: 800;
}

.job-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-preview-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.05);
  color: #36404d;
  font-size: 13px;
  font-weight: 700;
}

.job-preview-fit {
  margin: 0;
  color: #36404d;
}

.job-detail-card {
  padding: 22px;
}

.job-detail-card--full {
  padding: 24px;
}

.job-detail-highlight {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(18, 22, 28, 0.96), rgba(32, 38, 48, 0.9));
  color: #fbf7ef;
}

.job-detail-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: #fff1d0;
}

.job-detail-highlight p {
  margin: 0;
  color: rgba(251, 247, 239, 0.82);
}

.job-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

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

.job-meta-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(16, 17, 19, 0.04);
  border: 1px solid rgba(16, 17, 19, 0.06);
}

.job-meta-grid span {
  display: block;
  font-size: 12px;
  color: #697180;
  margin-bottom: 4px;
  font-weight: 700;
}

.job-meta-grid strong {
  color: #161b22;
  font-size: 14px;
}

.job-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

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

.job-info-block,
.tier-block {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.job-info-block h3,
.tier-block h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.company-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.company-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(16, 17, 19, 0.04);
  border: 1px solid rgba(16, 17, 19, 0.06);
}

.empty-state {
  text-align: center;
}

.job-item {
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: 20px;
  padding: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 233, 0.9));
  box-shadow: 0 14px 26px rgba(20, 26, 36, 0.08);
}

.job-item--recommended {
  border-color: rgba(203, 166, 109, 0.28);
}

.job-item--caution {
  background:
    linear-gradient(160deg, rgba(255, 251, 247, 0.96), rgba(246, 238, 230, 0.92));
  border-color: rgba(185, 140, 92, 0.22);
}

.job-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.job-item p {
  margin: 7px 0;
  font-size: 14px;
  color: #36404d;
}

.job-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(203, 166, 109, 0.14);
  color: #5b4827;
  font-weight: 700;
}

.intake-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-metric {
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 233, 0.94));
  border: 1px solid rgba(16, 17, 19, 0.08);
  display: grid;
  gap: 6px;
}

.admin-metric span {
  color: #697180;
  font-size: 13px;
  font-weight: 700;
}

.admin-metric strong {
  font-size: 28px;
  color: #141922;
  letter-spacing: 0.03em;
}

.admin-job-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.preset-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-preview {
  min-height: 180px;
}

.intake-item {
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 238, 0.92));
  box-shadow: 0 12px 24px rgba(18, 24, 32, 0.06);
}

.intake-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.intake-item p {
  margin: 5px 0;
  color: #33404d;
  font-size: 14px;
}

.intake-details {
  margin-top: 10px;
}

.intake-details summary {
  cursor: pointer;
  color: #121821;
  font-weight: 700;
}

.intake-details pre {
  margin: 10px 0 0;
  padding: 12px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: 14px;
  background: rgba(251, 249, 244, 0.92);
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 12px;
  line-height: 1.6;
}

.detail-section {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: 14px;
  background: rgba(251, 249, 244, 0.9);
}

.detail-section h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #171c24;
}

.detail-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(16, 17, 19, 0.06);
}

.detail-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.detail-row__label {
  color: #6a7380;
  font-size: 13px;
  font-weight: 700;
}

.detail-row__value {
  color: #1a212b;
  font-size: 13px;
  word-break: break-word;
}

.checkbox-field {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 22, 28, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.checkbox-field span {
  font-size: 14px;
  color: #171c24;
  font-weight: 700;
}

.checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #111318;
}

a {
  color: #171b22;
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .marketing-home {
    padding: 12px;
    gap: 16px;
  }

  .top-nav {
    grid-template-columns: auto 1fr auto;
    min-height: 52px;
  }

  .top-nav__brand {
    gap: 10px;
  }

  .top-nav__brand-logo {
    width: 92px;
    height: 32px;
    padding: 4px 6px;
  }

  .top-nav__brand-copy strong {
    font-size: 14px;
  }

  .top-nav__brand-copy span {
    font-size: 11px;
  }

  .top-nav__action {
    min-width: 68px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .app-drawer {
    width: min(88vw, 320px);
    padding: 16px;
    gap: 16px;
  }

  .hero-section,
  .content-section,
  .bottom-cta {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-section__copy h1 {
    font-size: clamp(28px, 8.6vw, 38px);
  }

  .hero-section__copy p {
    font-size: 14px;
    line-height: 1.68;
  }

  .hero-section__actions,
  .bottom-cta__actions {
    margin-top: 20px;
    gap: 10px;
  }

  .primary-btn,
  .secondary-btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 14px;
  }

  .hero-section__meta {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-section__meta span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-visual-grid,
  .feature-grid,
  .direction-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-heading__aside {
    max-width: none;
  }

  .trust-card,
  .feature-card,
  .direction-card {
    padding: 16px;
    border-radius: 18px;
  }

  .trust-card strong,
  .feature-card strong,
  .direction-card strong {
    font-size: 18px;
  }

  .trust-card p,
  .feature-card p,
  .direction-card p,
  .bottom-cta p,
  .faq-item p {
    font-size: 13px;
    line-height: 1.65;
  }

  .faq-item summary {
    padding: 16px;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 16px 16px;
  }

  .bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page {
    padding: 12px 12px 24px;
    gap: 16px;
  }

  .home-hero,
  .home-section {
    border-radius: 20px;
  }

  .home-hero {
    padding: 16px;
  }

  .home-topbar {
    margin-bottom: 18px;
  }

  .home-logo {
    width: 112px;
    height: 38px;
    padding: 4px 7px;
    border-radius: 12px;
  }

  .home-status-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .home-hero__body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-hero__copy h1 {
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .home-subtitle {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .home-hero__actions {
    margin-top: 20px;
  }

  .home-btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 14px;
  }

  .home-summary-card {
    padding: 16px;
    gap: 12px;
  }

  .home-summary-card strong {
    font-size: 18px;
  }

  .home-summary-list {
    font-size: 13px;
    gap: 8px;
  }

  .home-section {
    padding: 16px;
  }

  .home-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }

  .home-section__header h2 {
    font-size: 24px;
  }

  .home-quick-grid,
  .home-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-nav-card,
  .home-direction-card {
    padding: 16px;
    border-radius: 18px;
  }

  .home-nav-card {
    min-height: 156px;
  }

  .home-nav-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .home-nav-card strong {
    font-size: 16px;
  }

  .home-nav-card p,
  .home-direction-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .home-direction-card strong {
    margin-top: 12px;
    font-size: 17px;
  }

  .home-tags {
    justify-content: flex-start;
  }

  .home-direction-card {
    min-height: 208px;
  }

  .hero {
    padding: 114px 14px 26px;
  }

  .hero--compact {
    padding-top: 110px;
  }

  .hero h1 {
    margin-top: 0;
    font-size: 28px;
  }

  .brand-mark {
    top: 14px;
    right: 50%;
    transform: translateX(50%);
    width: min(62vw, 220px);
    height: 72px;
    padding: 6px 8px;
    border-radius: 18px;
  }

  .container {
    padding: 0 14px 42px;
  }

  .card {
    padding: 18px;
    border-radius: 18px;
  }

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

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

  .result-panels,
  .result-compact-grid {
    grid-template-columns: 1fr;
  }

  .result-report-grid,
  .admin-overview {
    grid-template-columns: 1fr;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .launch-panel,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .jobs-hero,
  .job-detail-head,
  .job-columns,
  .company-tier-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .job-meta-grid {
    grid-template-columns: 1fr;
  }

  .jobs-library--grid {
    grid-template-columns: 1fr;
  }

  .flow-card__head {
    flex-direction: column;
  }

  .flow-card__tags {
    justify-content: flex-start;
  }

  .brand-panel img {
    height: 152px;
  }

  .scale-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .option {
    min-height: 76px;
    padding: 10px 6px;
    border-radius: 14px;
  }

  .option-copy {
    gap: 2px;
    font-size: 12px;
  }

  .option-copy strong {
    font-size: 13px;
  }

  .actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .actions--toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .user-bar .actions button,
  .actions--toolbar button,
  .pagination-shell button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .pagination-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
  }

  .resume-uploader {
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: 78px;
    padding: 14px;
  }

  .resume-uploader__action {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 34px;
    padding: 0 12px;
  }

  .resume-uploader__badge {
    min-width: 44px;
    min-height: 44px;
    border-radius: 14px;
  }

  .resume-uploader__copy strong {
    font-size: 14px;
  }

  .resume-uploader__copy span {
    font-size: 11px;
  }
}

.auth-gate-open {
  overflow: hidden;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.auth-gate.hidden {
  display: none !important;
}

.auth-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.48);
  backdrop-filter: blur(10px);
}

.auth-gate__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 420px);
  padding: 22px;
  display: grid;
  gap: 16px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 86% 14%, rgba(203, 166, 109, 0.18), transparent 24%),
    linear-gradient(155deg, rgba(15, 20, 27, 0.96), rgba(23, 29, 38, 0.98));
  color: #fbf8f1;
  box-shadow: 0 28px 60px rgba(5, 9, 14, 0.28);
}

.auth-gate__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fbf8f1;
}

.auth-gate__close svg {
  width: 18px;
  height: 18px;
}

.auth-gate__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-gate__logo {
  width: 104px;
  height: 36px;
  padding: 5px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
}

.auth-gate__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-gate__eyebrow {
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1d39f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.auth-gate__body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  color: #fbf8f1;
}

.auth-gate__body p {
  margin: 0;
  color: rgba(251, 248, 241, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.auth-gate__pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fbf8f1;
  font-size: 12px;
  font-weight: 700;
}

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

.auth-gate__actions .cta-primary,
.auth-gate__actions .cta-secondary {
  min-width: 0;
  justify-content: center;
}

@media (max-width: 680px) {
  .auth-gate__panel {
    width: min(92vw, 360px);
    padding: 20px;
  }

  .auth-gate__actions {
    grid-template-columns: 1fr;
  }
}

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

.custom-select__native {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.custom-select__trigger {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 32, 0.09);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 245, 239, 0.96));
  color: #141a22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 20px rgba(18, 24, 32, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.16s ease,
    background 0.2s ease;
}

.custom-select__trigger:hover {
  border-color: rgba(203, 166, 109, 0.46);
  transform: translateY(-1px);
}

.custom-select__trigger:focus-visible {
  outline: none;
  border-color: rgba(203, 166, 109, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    var(--focus-ring);
}

.custom-select__trigger.is-placeholder .custom-select__value {
  color: #8690a0;
}

.custom-select__trigger.is-disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
}

.custom-select.is-invalid .custom-select__trigger {
  border-color: rgba(196, 76, 52, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 0 0 4px rgba(196, 76, 52, 0.12);
}

.custom-select__value {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.custom-select__icon {
  width: 20px;
  height: 20px;
  color: #6a7380;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.custom-select__icon svg {
  width: 20px;
  height: 20px;
}

.custom-select-open {
  overflow: hidden;
}

.custom-select-sheet {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.custom-select-sheet.hidden {
  display: none;
}

.custom-select-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.48);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.custom-select-sheet__panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 560px);
  max-height: min(78vh, 720px);
  transform: translate(-50%, 104%);
  border-radius: 30px 30px 0 0;
  border: 1px solid rgba(18, 24, 32, 0.07);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 245, 239, 0.97));
  box-shadow: 0 -26px 60px rgba(18, 24, 32, 0.18);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  transition: transform 0.26s cubic-bezier(0.2, 0.84, 0.22, 1);
  overflow: hidden;
}

.custom-select-sheet.is-open .custom-select-sheet__backdrop {
  opacity: 1;
}

.custom-select-sheet.is-open .custom-select-sheet__panel {
  transform: translate(-50%, 0);
}

.custom-select-sheet__handle {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(18, 24, 32, 0.12);
  margin: 10px auto 0;
}

.custom-select-sheet__header {
  padding: 16px 18px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.custom-select-sheet__header-copy {
  display: grid;
  gap: 6px;
}

.custom-select-sheet__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(203, 166, 109, 0.12);
  color: #8d6731;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.custom-select-sheet__header h3 {
  margin: 0;
  color: #141a22;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.custom-select-sheet__header p {
  margin: 0;
  color: #66707e;
  font-size: 13px;
  line-height: 1.58;
}

.custom-select-sheet__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(18, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #141a22;
  box-shadow: 0 8px 16px rgba(18, 24, 32, 0.06);
}

.custom-select-sheet__close svg {
  width: 18px;
  height: 18px;
}

.custom-select-sheet__options {
  padding: 8px 14px 0;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}

.custom-select-sheet__option {
  width: 100%;
  padding: 15px 16px;
  border-radius: 20px;
  border: 1px solid rgba(18, 24, 32, 0.07);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.06), transparent 32%),
    rgba(255, 255, 255, 0.84);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #141a22;
  box-shadow: 0 12px 20px rgba(18, 24, 32, 0.05);
  transition:
    transform 0.16s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.custom-select-sheet__option:hover {
  transform: translateY(-1px);
  border-color: rgba(203, 166, 109, 0.32);
  box-shadow: 0 14px 24px rgba(18, 24, 32, 0.06);
}

.custom-select-sheet__option:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.custom-select-sheet__option.is-selected {
  border-color: rgba(203, 166, 109, 0.42);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(248,245,239,0.97));
}

.custom-select-sheet__option-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.custom-select-sheet__option-copy strong {
  font-size: 15px;
  line-height: 1.32;
  color: #141a22;
  word-break: keep-all;
  letter-spacing: -0.01em;
}

.custom-select-sheet__option-copy span {
  font-size: 12px;
  line-height: 1.58;
  color: #67707d;
}

.custom-select-sheet__check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(203, 166, 109, 0.12);
  color: #8d6731;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.custom-select-sheet__option.is-selected .custom-select-sheet__check {
  opacity: 1;
  transform: scale(1);
}

.custom-select-sheet__check svg {
  width: 15px;
  height: 15px;
}

.custom-select-sheet__footer {
  padding: 12px 14px 18px;
}

.custom-select-sheet__footer-btn {
  width: 100%;
}

@media (max-width: 760px) {
  .custom-select__trigger {
    min-height: 44px;
    padding: 0 13px;
  }

  .custom-select__value {
    font-size: 13px;
  }

  .custom-select-sheet__panel {
    width: 100%;
    max-height: min(76vh, 680px);
    left: 0;
    transform: translateY(104%);
    border-radius: 24px 24px 0 0;
  }

  .custom-select-sheet.is-open .custom-select-sheet__panel {
    transform: translateY(0);
  }

  .custom-select-sheet__header {
    padding: 12px 14px 8px;
  }

  .custom-select-sheet__header h3 {
    font-size: 20px;
  }

  .custom-select-sheet__options {
    padding: 6px 12px 0;
  }

  .custom-select-sheet__option {
    padding: 13px 12px;
    border-radius: 16px;
  }
}
