:root {
  color-scheme: light;
  --blue: #1546a0;
  --blue-dark: #0f3274;
  --green: #15803d;
  --green-dark: #116431;
  --green-soft: #ecfdf3;
  --gold: #d9a441;
  --gold-soft: #fff7de;
  --ink: #152033;
  --muted: #657083;
  --line: #dfe5ef;
  --line-strong: #c8d1df;
  --soft: #eef4ff;
  --bg: #f5f8fc;
  --white: #ffffff;
  --warning-bg: #fff7e6;
  --warning-line: #e7c978;
  --shadow-soft: 0 18px 44px rgba(21, 32, 51, 0.1);
  --shadow-panel: 0 10px 26px rgba(21, 32, 51, 0.07);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #edf5ff 0, #fff9e8 360px, #f5f8fc 760px),
    var(--bg);
  color: var(--ink);
}

.app-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px 20px 44px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  border: 1px solid #d8e2f0;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 16px 18px;
  box-shadow: var(--shadow-panel);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid #e8d29d;
  border-radius: 8px;
  object-fit: cover;
  background: #fffaf0;
  box-shadow: 0 8px 18px rgba(82, 52, 12, 0.08);
}

.brand-lockup strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.1;
}

.brand-lockup span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.status-pill,
.summary-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.status-pill.active {
  border-color: #b6e3c4;
  color: var(--green);
  background: #ecfdf3;
}

.front-page-banner {
  display: grid;
  place-items: center;
  width: min(620px, 100%);
  margin: 0 auto 16px;
  border: 1px solid #d9b76a;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff8df 0%, #ffffff 100%);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.front-page-banner .front-banner-card {
  width: min(540px, 100%);
}

.hero-banner {
  position: relative;
  display: grid;
  gap: 26px;
  overflow: hidden;
  border: 1px solid #b8c9e6;
  border-top: 5px solid #0f8f4b;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #eef6ff 46%, #ecfdf3 100%);
  box-shadow: 0 26px 64px rgba(15, 50, 116, 0.18);
  margin-bottom: 0;
  min-height: 0;
  padding: 28px;
}

.hero-banner::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(15, 50, 116, 0.1) 0%, transparent 36%),
    linear-gradient(20deg, transparent 56%, rgba(217, 164, 65, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 46%);
  content: "";
}

.hero-banner > * {
  position: relative;
  z-index: 1;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 44%);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

.hero-copy h1 {
  max-width: 620px;
  color: #0f3274;
  font-size: clamp(40px, 5.2vw, 62px);
  font-weight: 900;
  line-height: 1.14;
  text-shadow: 0 8px 22px rgba(15, 50, 116, 0.08);
}

.hero-copy p {
  max-width: 640px;
  color: #24364f;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.62;
  margin: 0;
}

.hero-message-board {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 620px;
  border: 1px solid #92d5ad;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ecfdf3 56%, #fff7de 100%);
  box-shadow: 0 18px 38px rgba(15, 50, 116, 0.12);
  padding: 24px 24px 24px 70px;
}

.hero-message-board::before {
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #16a34a 0%, #0f7c3d 100%);
  color: var(--white);
  content: "✓";
  font-size: 16px;
  font-weight: 800;
}

.hero-message-board strong {
  color: #0f7c3d;
  font-size: 21px;
  line-height: 1.48;
}

.hero-message-board span {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.76;
}

.hero-message-board .hero-free-highlight {
  display: inline-block;
  color: #0f8f4b;
  font-size: 1.45em;
  font-weight: 900;
  line-height: 1;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.hero-actions a,
.section-intro a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
  min-height: 50px;
  padding: 13px 22px;
  text-decoration: none;
}

.hero-primary,
.section-intro a {
  background: linear-gradient(180deg, #16a34a 0%, #0f7c3d 100%);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(15, 124, 61, 0.3);
}

.hero-primary:hover,
.section-intro a:hover {
  background: linear-gradient(180deg, #15803d 0%, #116431 100%);
}

.hero-secondary {
  position: relative;
  justify-self: end;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--blue);
  min-width: 112px;
}

.hero-secondary:hover {
  border-color: #9eb9f0;
  background: var(--soft);
}

.hero-secondary[data-tooltip]::after {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 230px;
  border: 1px solid #b7c7e6;
  border-radius: 6px;
  background: #0f3274;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 50, 116, 0.24);
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  visibility: hidden;
  z-index: 5;
}

.hero-secondary[data-tooltip]:hover::after,
.hero-secondary[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.hero-visual {
  width: 100%;
  margin: 0;
  border: 1px solid #bed0eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(15, 50, 116, 0.22);
  overflow: hidden;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 36%;
}

.registration-gated:not(.registration-started):not(.account-started) > .progress-panel,
.registration-gated:not(.registration-started):not(.account-started) > .section-intro,
.registration-gated:not(.registration-started):not(.account-started) > .content-grid,
.registration-gated.registration-started:not(.account-started) #servicemanAccountPanel,
.registration-gated.registration-started:not(.profile-complete) #loginForm,
.registration-gated.registration-started:not(.profile-complete) #subscriptionPanel,
.registration-gated.registration-started:not(.profile-complete) .preview-panel,
.registration-gated.registration-started:not(.profile-complete) #rewardAccountPanel,
.registration-gated.registration-started:not(.profile-complete) #supportForm,
.registration-gated.registration-started.profile-complete:not(.mobile-verified) #profileForm,
.registration-gated.registration-started.profile-complete:not(.mobile-verified) #subscriptionPanel,
.registration-gated.registration-started.profile-complete:not(.mobile-verified) .preview-panel,
.registration-gated.registration-started.profile-complete:not(.mobile-verified) #rewardAccountPanel,
.registration-gated.registration-started.profile-complete:not(.mobile-verified) #supportForm,
.registration-gated.registration-started.mobile-verified #profileForm,
.registration-gated.registration-started.mobile-verified #loginForm,
.registration-gated.registration-started.mobile-verified .preview-panel,
.registration-gated.registration-started.mobile-verified #rewardAccountPanel,
.registration-gated.registration-started.mobile-verified #supportForm,
.registration-gated.account-started > .progress-panel,
.registration-gated.account-started > .section-intro,
.registration-gated.account-started #profileForm,
.registration-gated.account-started #loginForm,
.registration-gated.account-started #subscriptionPanel,
.registration-gated.account-started .preview-panel,
.registration-gated.account-started #rewardAccountPanel,
.registration-gated.account-started #supportForm {
  display: none;
}

.registration-gated.account-started > .content-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.registration-gated.account-started .side-stack {
  display: block;
}

.registration-gated.account-started #servicemanAccountPanel {
  display: block;
}

.registration-gated.account-started.account-logged-in #accountLoginForm,
.registration-gated.account-started.account-logged-in .account-actions,
.registration-gated.account-started.account-logged-in #forgotPasswordForm {
  display: none;
}

.registration-gated.account-started.account-logged-in #subscriptionPanel,
.registration-gated.account-started.account-logged-in #rewardAccountPanel,
.registration-gated.account-started.account-logged-in #supportForm {
  display: grid;
}

.hero-step-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
}

.hero-step-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8e2f0;
  border-radius: 999px;
  background: #fbfdff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.hero-step-row span::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  content: "✓";
  font-size: 12px;
}

.front-banner-card {
  width: min(410px, 100%);
  margin: 0;
  border: 1px solid #d9b76a;
  border-radius: 8px;
  background: #fff7dc;
  box-shadow: 0 18px 42px rgba(93, 53, 12, 0.2);
  overflow: hidden;
}

.front-banner-card img {
  display: block;
  width: 100%;
  height: auto;
}

.section-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 16px;
  border: 1px solid #d8e2f0;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: var(--shadow-panel);
}

.section-intro h2 {
  margin-bottom: 4px;
}

.section-intro p {
  margin: 0;
  color: var(--muted);
}

.progress-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.progress-panel div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow-panel);
}

.progress-panel .progress-step {
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.progress-panel .progress-step.current {
  border-color: #8ac79b;
  border-left: 5px solid var(--green);
  background: linear-gradient(180deg, #effdf4 0%, #ffffff 68%, #fff9e8 100%);
  color: var(--green-dark);
  box-shadow: 0 12px 28px rgba(21, 128, 61, 0.16);
}

.progress-panel .progress-step.done {
  border-color: #b6e3c4;
  background: var(--green-soft);
  color: var(--green);
}

.progress-panel .progress-step.pending {
  color: var(--muted);
}

.progress-panel p {
  margin: 0;
  font-weight: 700;
}

.progress-panel small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
}

.step-number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  align-items: start;
  gap: 20px;
}

.side-stack {
  display: grid;
  gap: 16px;
  align-self: start;
}

.panel {
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-panel);
}

.panel h2 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 22px;
}

.panel > p {
  color: var(--muted);
  line-height: 1.5;
}

.staff-login-card {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.staff-login-card.active {
  border-color: #b6e3c4;
  background: #f0fdf4;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #4f5d73;
  font-size: 13.5px;
  font-weight: 700;
}

#profileForm {
  font-size: 15px;
}

#profileForm label {
  color: #34465f;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 15px;
}

#profileForm input,
#profileForm select,
#profileForm textarea {
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.35;
}

#profileForm input,
#profileForm select {
  min-height: 49px;
}

#profileForm textarea {
  min-height: 96px;
}

.progress-step.current .step-number {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
}

.progress-step.current p {
  color: var(--green-dark);
}

.progress-step.current small {
  color: var(--green);
  font-weight: 800;
}

.progress-step.pending .step-number {
  background: #e8eef7;
  color: var(--muted);
}

.progress-step.done .step-number {
  background: var(--green);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 70, 160, 0.14);
  outline: none;
}

textarea {
  resize: vertical;
}

button {
  width: 100%;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  min-height: 44px;
  padding: 12px 14px;
}

button:hover {
  background: var(--green-dark);
}

.otp-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.otp-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 8px;
}

.otp-secondary-button {
  border: 1px solid #d8e2f0;
  background: var(--white);
  color: var(--blue);
}

.otp-secondary-button:hover {
  background: var(--soft);
}

button:disabled {
  cursor: progress;
  opacity: 0.7;
}

.hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.referral-box {
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  background: #f8fbff;
  margin: 12px 0 16px;
  padding: 16px;
}

.referral-box h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.referrer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.referral-box .checkbox-row {
  margin-top: 12px;
}

.photo-capture-box {
  border: 1px solid #b8dec4;
  border-radius: 8px;
  background: #f0fdf4;
  margin: 14px 0;
  padding: 14px;
}

.photo-capture-box h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 16px;
  border: 1px solid #c9dcf5;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #eef6ff;
  color: #123d73;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  padding: 12px 14px;
  text-transform: none;
}

.form-section-title::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
}

.form-section-title:first-of-type {
  margin-top: 18px;
}

.mobile-resume-row {
  display: grid;
  gap: 8px;
  margin-top: -4px;
}

.mobile-resume-row button {
  width: fit-content;
}

.upload-field {
  border: 1px solid #b8dec4;
  border-radius: 8px;
  background: #f0fdf4;
  margin: 12px 0 16px;
  padding: 16px;
}

.upload-field > h3,
.upload-field > .hint:not(#currentPhotoStatus) {
  display: none;
}

.camera-actions,
.photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.primary-action,
.secondary-button {
  justify-content: center;
  min-height: 42px;
}

.primary-action {
  border: 0;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.primary-action:hover {
  background: var(--green-dark);
}

button.secondary,
button.ghost {
  width: auto;
  border: 1px solid #d8e2f0;
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}

button.secondary:hover,
button.ghost:hover {
  background: var(--soft);
}

.camera-preview {
  display: none;
  width: min(320px, 100%);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #0f172a;
  margin: 12px 0 8px;
}

.camera-preview.active {
  display: block;
}

.photo-preview {
  display: none;
  width: min(240px, 100%);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
  margin: 10px 0;
}

.photo-preview.active {
  display: block;
}

.upload-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.upload-status {
  margin: 0;
  color: var(--muted);
}

#clearCurrentPhoto {
  display: inline-flex;
}

.secondary-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.secondary-button.active {
  display: inline-flex;
  width: auto;
}

.secondary-button input {
  display: none;
}

.secondary-button:hover {
  background: #e8eef7;
}

.other-category-box {
  display: grid;
  gap: 8px;
  margin: 0 0 15px;
}

.other-category-box label,
.other-category-box .field-hint,
.other-category-box .service-picker {
  margin-bottom: 0;
}

.field-hint.required {
  color: #b45309;
  font-weight: 700;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 14px;
}

.quick-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.quick-category {
  width: auto;
  min-height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  padding: 8px 12px;
}

.quick-category:hover {
  background: var(--soft);
  color: var(--blue);
}

.quick-category.selected {
  border-color: var(--green);
  background: #ecfdf3;
  color: var(--green);
  font-weight: 800;
}

.service-picker-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.group-head h3 {
  margin: 6px 0 0;
  font-size: 16px;
}

.group-head span {
  color: var(--muted);
  font-size: 13px;
}

.service-picker-button {
  width: auto;
  min-height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  padding: 8px 10px;
}

.service-picker-button:hover {
  background: var(--soft);
  color: var(--blue);
}

.service-picker-button.selected {
  border-color: var(--green);
  background: #ecfdf3;
  color: var(--green);
}

.service-picker-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.disclaimer-box {
  border: 1px solid var(--warning-line);
  border-radius: 8px;
  background: var(--warning-bg);
  margin: 14px 0 16px;
  padding: 16px;
}

.disclaimer-box h3 {
  margin-bottom: 10px;
  color: #6f4c00;
  font-size: 17px;
  line-height: 1.3;
}

.disclaimer-summary {
  color: #6f4c00;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
}

.disclaimer-box ul {
  display: none;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
  counter-reset: disclaimer;
}

.disclaimer-details {
  display: none;
}

.disclaimer-box.disclaimer-open .disclaimer-details {
  display: block;
}

.disclaimer-box.disclaimer-open ul {
  display: grid;
}

.disclaimer-box.disclaimer-open > ul {
  display: none;
}

.disclaimer-box li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.disclaimer-box li::before {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f6df9d;
  color: #6f4c00;
  content: counter(disclaimer);
  counter-increment: disclaimer;
  font-size: 12px;
  font-weight: 800;
}

.disclaimer-box a {
  color: var(--blue);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.disclaimer-version,
.disclaimer-public-link,
.disclaimer-language-title,
.disclaimer-notice,
.disclaimer-consent-copy {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 10px 0;
}

.disclaimer-version,
.disclaimer-language-title {
  color: #6f4c00;
  font-weight: 800;
}

.disclaimer-notice,
.disclaimer-consent-copy {
  background: rgba(246, 223, 157, 0.48);
  border-left: 3px solid #d2a72f;
  border-radius: 8px;
  padding: 10px 12px;
}

.disclaimer-link-button,
.disclaimer-read-button {
  border: 1px solid #e4c86e;
  background: #fffdf5;
  color: #6f4c00;
}

.disclaimer-link-button:hover,
.disclaimer-read-button:hover {
  background: #fff2bf;
}

.disclaimer-read-button {
  display: none;
  margin: 0 0 10px;
}

.disclaimer-box.disclaimer-open .disclaimer-read-button {
  display: block;
}

.disclaimer-box.disclaimer-read {
  border-color: #b6e3c4;
  background: #f0fdf4;
}

.disclaimer-box.disclaimer-read .disclaimer-summary,
.disclaimer-box.disclaimer-read h3 {
  color: var(--green);
}

.checkbox-row {
  align-items: start;
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: 22px 1fr;
  border: 1px solid #e4c86e;
  border-radius: 8px;
  background: #fffdf5;
  padding: 12px;
  margin: 0;
}

.checkbox-row input {
  margin-top: 1px;
  width: 20px;
  height: 20px;
}

.checkbox-row input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.referral-code {
  display: inline-block;
  border: 1px solid #b6e3c4;
  border-radius: 6px;
  background: #ecfdf3;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 10px;
  padding: 8px 10px;
}

.two-column,
.three-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px;
}

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

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

.two-column > label,
.three-column > label {
  align-content: start;
}

.working-area-field,
.location-grid > label:nth-child(3) {
  grid-column: 1 / -1;
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  background: #f8fbff;
  padding: 14px;
}

.area-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.area-chip {
  width: auto;
  border: 1px solid #d8e2f0;
  background: var(--white);
  color: var(--ink);
  padding: 8px 10px;
}

.area-chip:hover {
  background: var(--soft);
  color: var(--blue);
}

.area-chip.selected {
  border-color: var(--green);
  background: #ecfdf3;
  color: var(--green);
}

.area-chip-all {
  border-color: #b6e3c4;
  font-weight: 800;
}

.area-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 9px;
  margin-top: 4px;
}

.area-picker-button {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d8e2f0;
  background: var(--white);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  padding: 9px 10px;
  text-align: center;
  white-space: normal;
}

.area-picker-button:hover {
  background: var(--soft);
  color: var(--blue);
}

.area-picker-button.selected {
  border-color: var(--green);
  background: #ecfdf3;
  color: var(--green);
}

.area-picker-all {
  border-color: #b6e3c4;
  font-weight: 800;
}

select[multiple] {
  min-height: 132px;
  padding: 10px;
}

.field-hint {
  color: var(--muted);
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 6px;
}

#areaStatus {
  border: 1px solid #cfe0f5;
  border-radius: 7px;
  background: #eef6ff;
  color: #23466f;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 10px;
  padding: 10px 12px;
  width: 100%;
}

.plans {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.plan-card {
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  padding: 14px;
  background: #fbfdff;
  box-shadow: 0 8px 18px rgba(21, 32, 51, 0.04);
}

.plan-card.selected {
  border-color: var(--green);
  background: #f0fdf4;
}

.plan-card button {
  margin-top: 10px;
  background: var(--green);
}

.plan-card h3,
.plan-card p {
  margin-bottom: 6px;
}

.payment-box {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.hidden-field {
  display: none;
}

.hidden-field.active {
  display: grid;
}

.preview-panel {
  text-align: center;
}

.account-panel {
  display: grid;
  gap: 14px;
}

.account-panel h2 {
  font-size: 26px;
  line-height: 1.18;
  margin-bottom: 4px;
}

.account-panel label {
  color: #304158;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 15px;
}

.account-panel input {
  font-size: 16px;
  font-weight: 700;
  min-height: 50px;
  padding: 13px 14px;
}

.account-panel input::placeholder {
  color: #718096;
  font-weight: 650;
}

.account-panel .checkbox-row span {
  color: #42526a;
  font-size: 14px;
  font-weight: 800;
}

.account-panel button {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 48px;
}

.account-actions,
.dashboard-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.forgot-password-box,
.account-dashboard {
  display: grid;
  gap: 12px;
}

.forgot-password-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 16px;
}

.forgot-password-box label {
  font-size: 14.5px;
}

.account-panel .hint {
  color: #4f5d73;
  font-size: 14.5px;
  font-weight: 750;
  line-height: 1.55;
}

.dashboard-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 800;
  padding: 12px;
}

.dashboard-heading {
  color: var(--ink);
  font-size: 18px;
  margin: 4px 0 0;
}

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

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

.dashboard-summary-grid .dashboard-tile {
  background: #eef7ff;
  border-color: #badcff;
}

.dashboard-tile,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.dashboard-tile {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.dashboard-tile-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dashboard-tile strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.dashboard-tile small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.dashboard-shortcut {
  width: auto;
  min-width: 140px;
  background: var(--blue);
  font-size: 13px;
  padding: 10px 12px;
}

.dashboard-actions {
  display: grid;
  gap: 10px;
}

.dashboard-badges,
.dashboard-row {
  display: grid;
  gap: 8px;
}

.dashboard-badge,
.dashboard-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 10px;
}

.reward-account-panel {
  display: grid;
  gap: 12px;
}

.reward-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

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

.reward-stats span,
.reward-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
}

.reward-list {
  display: grid;
  gap: 8px;
}

.reward-row {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.reward-row strong {
  color: var(--ink);
}

.save-profile-button {
  margin-top: 4px;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(21, 128, 61, 0.18);
}

.save-profile-button:hover {
  background: #116431;
}

.avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef4ff 0%, #fff7de 100%);
  color: var(--blue);
  font-weight: 800;
  font-size: 24px;
}

.summary-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

@media (max-width: 760px) {
  .app-shell {
    padding: 12px;
  }

  .top-bar,
  .hero-banner,
  .content-grid,
  .two-column,
  .three-column {
    grid-template-columns: 1fr;
  }

  .top-bar {
    display: grid;
    padding: 14px;
  }

  .front-page-banner {
    padding: 10px;
  }

  .front-page-banner .front-banner-card {
    width: 100%;
  }

  .brand-lockup {
    align-items: center;
  }

  .brand-lockup strong {
    font-size: 26px;
  }

  .brand-lockup span {
    font-size: 13px;
  }

  .status-pill {
    width: 100%;
    text-align: center;
  }

  .hero-banner {
    gap: 18px;
    min-height: 0;
    padding: 20px 14px 18px;
  }

  .hero-header {
    display: grid;
    gap: 12px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-message-board {
    gap: 14px;
    padding: 18px 15px 18px 52px;
  }

  .hero-message-board::before {
    top: 18px;
    left: 14px;
    width: 24px;
    height: 24px;
  }

  .hero-message-board strong {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-message-board span {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-message-board .hero-free-highlight {
    font-size: 1.32em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .hero-actions a {
    min-height: 44px;
    padding: 10px 12px;
    text-align: center;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .hero-step-row {
    display: none;
  }

  .front-banner-card {
    width: min(360px, 100%);
  }

  .reward-choice,
  .dashboard-grid,
  .dashboard-summary-grid,
  .reward-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-shortcut {
    width: 100%;
  }

  .section-intro {
    display: grid;
    padding: 16px;
  }

  .section-intro a {
    width: 100%;
  }

  .content-grid {
    display: grid;
  }

  .side-stack {
    gap: 14px;
  }

  .progress-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  h1 {
    font-size: 30px;
  }

  .panel {
    padding: 18px 16px;
  }

  .panel h2 {
    font-size: 20px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .otp-actions,
  .otp-input-row {
    grid-template-columns: 1fr;
  }

  .disclaimer-box li {
    grid-template-columns: 26px 1fr;
  }
}
