:root {
  --bg-deep: #11195e;
  --bg-mid: #1d2c88;
  --bg-plum: #5f144d;
  --brand-blue: #00247d;
  --brand-blue-strong: #17389b;
  --brand-red: #de0f16;
  --brand-orange: #ef901f;
  --brand-gold: #ffd84d;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.18);
  --surface-muted: rgba(255, 255, 255, 0.12);
  --surface-glass: rgba(255, 255, 255, 0.08);
  --ink-strong: #202335;
  --ink-body: #444a63;
  --ink-soft: #7e8399;
  --danger: #ff2d2d;
  --shadow-xl: 0 28px 80px rgba(8, 17, 66, 0.45);
  --shadow-md: 0 18px 50px rgba(14, 23, 73, 0.22);
  --page-gradient:
    linear-gradient(135deg, rgba(17, 25, 94, 1) 0%, rgba(0, 36, 125, 1) 45%, rgba(90, 15, 75, 1) 72%, rgba(222, 15, 22, 0.94) 92%, rgba(239, 144, 31, 0.92) 100%);
  --primary-gradient:
    linear-gradient(90deg, #e51218 0%, #d51824 22%, #8e184f 55%, #00247d 100%);
  --panel-gradient:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.72) 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Kanit", "PingFang SC", "Segoe UI", sans-serif;
  color: var(--surface);
  background:
    radial-gradient(circle at top left, rgba(72, 130, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 126, 53, 0.25), transparent 26%),
    linear-gradient(160deg, #0b102f 0%, #121735 48%, #1b1030 100%);
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

#app {
  min-height: 100vh;
}

.prototype-shell {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 24px;
}

.flow-panel {
  position: relative;
  width: 320px;
  padding: 62px 24px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.flow-panel__toolbar {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  transform: translateX(-50%);
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 16px rgba(10, 17, 50, 0.08);
  backdrop-filter: blur(10px);
}

.language-switch__button {
  min-width: 30px;
  min-height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  color: rgba(51, 51, 51, 0.62);
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.language-switch__button.is-active {
  background: rgba(0, 36, 125, 0.84);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 36, 125, 0.16);
}

.flow-panel__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.flow-panel__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
}

.flow-panel__body {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.flow-panel__contact {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-panel__contact-intro {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.flow-panel__contact-row + .flow-panel__contact-row {
  margin-top: 10px;
}

.flow-panel__contact-row {
  display: grid;
  gap: 2px;
}

.flow-panel__contact-role {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.flow-panel__contact-name {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
}

.flow-panel__contact-link {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(210, 227, 255, 0.92);
  text-decoration: none;
  word-break: break-all;
}

.flow-panel__contact-link:hover {
  text-decoration: underline;
}

.flow-steps,
.flow-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.flow-steps button,
.flow-actions button {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.flow-steps button:hover,
.flow-actions button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.flow-steps button.is-active {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 216, 77, 0.55);
  box-shadow: 0 10px 24px rgba(11, 16, 53, 0.3);
}

.flow-step-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.flow-step-meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.flow-panel__tips {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-panel__tips p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.phone-stage {
  position: relative;
  flex: 0 0 auto;
}

.phone {
  position: relative;
  width: min(360px, calc(100vw - 24px));
  aspect-ratio: 360 / 780;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #0f1442;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.phone-language-switch {
  position: absolute;
  top: calc(8px + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 16px rgba(10, 17, 50, 0.08);
  backdrop-filter: blur(10px);
}

.phone-language-switch__button {
  min-width: 30px;
  min-height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  color: rgba(51, 51, 51, 0.62);
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.phone-language-switch__button.is-active {
  background: rgba(0, 36, 125, 0.84);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 36, 125, 0.16);
}

.screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--page-gradient);
}

.screen--solid {
  background: var(--page-gradient);
}

.screen__content {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.status-bar__icons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.signal-icon {
  display: inline-flex;
  gap: 2px;
  align-items: flex-end;
  height: 11px;
}

.signal-icon span {
  width: 3px;
  border-radius: 2px;
  background: currentColor;
  display: block;
}

.signal-icon span:nth-child(1) {
  height: 4px;
  opacity: 0.65;
}

.signal-icon span:nth-child(2) {
  height: 6px;
  opacity: 0.78;
}

.signal-icon span:nth-child(3) {
  height: 8px;
  opacity: 0.9;
}

.signal-icon span:nth-child(4) {
  height: 10px;
}

.wifi-icon {
  position: relative;
  width: 14px;
  height: 11px;
  background: radial-gradient(circle at 50% 9px, currentColor 0, currentColor 1.6px, transparent 1.8px);
}

.wifi-icon::before,
.wifi-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
}

.wifi-icon::before {
  top: -1px;
  width: 14px;
  height: 9px;
}

.wifi-icon::after {
  top: 3px;
  width: 8px;
  height: 5px;
}

.battery-icon {
  position: relative;
  width: 24px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.battery-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  right: -4px;
  width: 2px;
  height: 6px;
  border-radius: 1px;
  background: currentColor;
}

.battery-icon::after {
  content: "";
  position: absolute;
  top: 1.5px;
  left: 1.5px;
  width: 15px;
  height: 7px;
  border-radius: 1.5px;
  background: currentColor;
}

.app-bar {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 15px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
}

.icon-button__arrow {
  width: 11px;
  height: 11px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

.skip-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.launch-screen {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at 106% 105%, rgba(239, 144, 31, 0.98) 0%, rgba(223, 18, 24, 0.88) 14%, rgba(223, 18, 24, 0.42) 24%, rgba(223, 18, 24, 0) 42%),
    linear-gradient(133.6497deg, rgb(17, 25, 94) 0.52753%, rgb(0, 36, 125) 83.697%);
  background-repeat: no-repeat;
}

.launch-screen__top {
  position: absolute;
  top: 159px;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 1;
  display: block;
  width: 254px;
  max-width: 254px;
  height: auto;
  animation: launchFade 0.9s ease both;
}

.launch-screen__bottom {
  position: absolute;
  left: 0;
  top: 420px;
  right: 0;
  width: 100%;
  height: calc(100% - 420px);
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
  animation: launchFade 1.15s ease both;
}

.page-scroll {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

.page-scroll::-webkit-scrollbar {
  display: none;
}

.agreement-screen {
  padding: 64px 24px 0;
  padding-bottom: 168px;
}

.top-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}

.brand-title .easy {
  background: linear-gradient(90deg, #43f0c3 0%, #2bdd8d 56%, #79ffd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-title .thai {
  color: #fff;
}

.brand-caption {
  font-size: 12px;
  opacity: 0.56;
}

.mascot {
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
}

.notice-card {
  margin-top: 12px;
  min-height: 88px;
  padding: 16px 20px;
  border-radius: 4px;
  background: #fffdfb;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(13, 19, 61, 0.1);
}

.notice-graphic {
  position: relative;
  width: 120px;
  height: 58px;
}

.notice-graphic__glow {
  position: absolute;
  inset: 12px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(250, 231, 186, 0.72), rgba(250, 224, 143, 0.38));
}

.notice-graphic__bell {
  position: absolute;
  inset: 2px 32px 0;
  border-radius: 28px 28px 22px 22px;
  background: linear-gradient(180deg, #8a66ff 0%, #6937f3 100%);
  transform: rotate(-14deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.notice-graphic__bell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.notice-graphic__bell::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -5px;
  height: 6px;
  border-radius: 999px;
  background: #35d7a4;
}

.notice-graphic__top {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border: 2px solid #3b3d4e;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.notice-graphic__spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ff5cff;
  border-bottom: 2px solid #ff5cff;
  opacity: 0.9;
}

.notice-graphic__spark--left {
  left: 4px;
  top: 10px;
  transform: rotate(180deg);
}

.notice-graphic__spark--right {
  right: 2px;
  bottom: 8px;
}

.section-title {
  margin: 16px 0 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.section-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.agreement-scroll {
  margin-top: 16px;
  height: 250px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

.agreement-scroll::-webkit-scrollbar {
  width: 5px;
}

.agreement-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.agreement-clause {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.agreement-clause h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
}

.agreement-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 22px 24px 16px;
  background: #fff;
  color: var(--ink-body);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 2px;
  border: 1.5px solid rgba(0, 36, 125, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background 160ms ease, border-color 160ms ease;
}

.checkbox.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.checkbox__tick {
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.check-copy {
  font-size: 12px;
  line-height: 1.55;
  color: #444;
}

.check-copy button,
.check-copy a {
  color: var(--brand-blue);
  font-weight: 500;
}

.check-copy a {
  text-decoration: underline;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.btn {
  min-height: 48px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: var(--primary-gradient);
  box-shadow: 0 12px 28px rgba(12, 18, 56, 0.25);
}

.btn--secondary {
  color: var(--brand-blue);
  border: 1.5px solid var(--brand-blue);
  background: #fff;
}

.btn--light {
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.95);
}

.btn--outline-light {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  background: transparent;
}

.btn--disabled,
.btn[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.login-screen,
.otp-screen {
  padding: 100px 24px 310px;
}

.login-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo {
  display: block;
  width: 186px;
  height: auto;
}

.login-caption {
  margin: 9px 0 0;
  color: rgba(245, 245, 245, 0.5);
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.fake-input {
  margin-top: 24px;
  min-height: 50px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid transparent;
  background: rgba(245, 245, 245, 0.2);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 16px 0 24px;
  position: relative;
}

.fake-input.is-error {
  border-color: #dd0d16;
}

.fake-input__prefix {
  font-size: 16px;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.94);
  line-height: 16px;
}

.fake-input__value {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 18px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0;
}

.fake-input__value.is-filled {
  color: rgba(255, 255, 255, 0.98);
}

.fake-input__placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.fake-input__cursor {
  color: rgba(255, 255, 255, 0.98);
}

.fake-input__clear {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}

.fake-input__clear img {
  display: block;
  width: 100%;
  height: 100%;
}

.login-error {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #ff1111;
  font-size: 12px;
  line-height: 16px;
}

.login-error img {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.stack-gap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.agreement-inline {
  width: 100%;
  margin-top: 38px;
}

.agreement-inline .check-row {
  width: 100%;
}

.agreement-inline .check-copy {
  color: rgba(212, 212, 212, 1);
  font-size: 12px;
  line-height: 18px;
}

.agreement-inline .check-copy button,
.agreement-inline .check-copy a {
  color: #fff;
  text-decoration: underline;
}

.agreement-inline .checkbox {
  margin-top: 3px;
  border-color: rgba(212, 212, 212, 0.8);
  background: transparent;
}

.agreement-inline .checkbox.is-active {
  background: #fff;
  border-color: #fff;
}

.agreement-inline .checkbox.is-active .checkbox__tick {
  border-color: #00247d;
}

.input-submit {
  width: 100%;
  margin-top: 10px;
}

.input-submit .btn {
  width: 100%;
  min-height: 50px;
  border-radius: 25px;
  font-weight: 500;
  color: #00247d;
  background: rgba(255, 255, 255, 0.95);
}

.login-screen--error .input-submit .btn[disabled] {
  opacity: 0.4;
}

.screen--login-register {
  background: #00247d;
}

.screen--login-register::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/figma/startup/guide-bg.png") center / cover no-repeat;
}

.login-register-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.login-register-appbar {
  position: absolute;
  top: 40px;
  left: 0;
  width: 360px;
  height: 58px;
}

.login-register-back {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 44px;
  height: 44px;
}

.login-register-back__icon {
  position: absolute;
  left: 15px;
  top: 14px;
  width: 13px;
  height: 13px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.login-register-brand {
  position: absolute;
  left: 65px;
  top: 0;
  width: 230px;
  height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-register-logo {
  width: 186px;
  height: 37px;
  margin-top: 4px;
  display: block;
}

.login-register-caption {
  margin: 3px 0 0;
  color: rgba(245, 245, 245, 0.5);
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  white-space: nowrap;
}

.login-register-heading {
  position: absolute;
  top: 146px;
  left: 24px;
  right: 24px;
}

.login-register-heading h1 {
  margin: 0;
  color: #fff;
  font-family: "Kanit", "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
}

.login-register-heading p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.login-register-form {
  position: absolute;
  top: 232px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.login-phone-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  padding: 0 17px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #333;
  text-align: left;
  overflow: hidden;
}

.login-phone-input.is-focused {
  border-color: #44d7b6;
}

.login-phone-input.is-error {
  border-color: #dd0d16;
}

.login-phone-input__country {
  position: relative;
  display: flex;
  align-items: center;
  width: 74px;
  height: 32px;
  flex: 0 0 74px;
}

.login-phone-input__flag {
  position: relative;
  width: 20px;
  height: 14px;
  overflow: hidden;
  border-radius: 1px;
  background:
    linear-gradient(
      180deg,
      #c8192e 0 16.66%,
      #fff 16.66% 33.33%,
      #253a88 33.33% 66.66%,
      #fff 66.66% 83.33%,
      #c8192e 83.33% 100%
    );
}

.login-phone-input__code {
  margin-left: 4px;
  color: #6b7280;
  font-family: "Roboto", "Kanit", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.login-phone-input__divider {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 32px;
  background: #cbd5e1;
}

.login-phone-input__value {
  min-width: 0;
  flex: 1 1 auto;
  color: #6b7280;
  font-family: "Roboto", "Kanit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.login-phone-input__value.is-filled {
  color: #333;
}

.login-phone-input__placeholder {
  color: #6b7280;
}

.login-phone-input__cursor {
  color: #333;
  animation: blink 1s step-end infinite;
}

.login-phone-input__clear {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.login-phone-input__clear img {
  display: block;
  width: 100%;
  height: 100%;
}

.login-register-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 16px;
  margin-top: 8px;
  color: #ff1111;
  font-size: 12px;
  line-height: 16px;
}

.login-register-error img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.login-register-agreement {
  margin-top: 18px;
}

.login-register-screen.is-error .login-register-agreement {
  margin-top: 16px;
}

.login-register-agreement .check-row {
  gap: 12px;
}

.login-register-agreement .checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 4px;
  border-color: #cbd5e1;
  background: #fff;
}

.login-register-agreement .checkbox.is-active {
  background: #fff;
  border-color: #fff;
}

.login-register-agreement .checkbox.is-active .checkbox__tick {
  width: 9px;
  height: 5px;
  border-color: #00247d;
}

.login-register-agreement .check-copy {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 18px;
}

.login-register-agreement .check-copy button,
.login-register-agreement .check-copy a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  text-decoration: underline;
}

.login-register-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  border-radius: 100px;
  background: #44d7b6;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.login-register-submit.is-disabled,
.login-register-submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.login-register-submit__arrow {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.screen__content:has(.login-register-screen) .keypad {
  top: 518px;
  bottom: 0;
  padding: 4px 4px 68px;
  background: #cfd4db;
}

.screen__content:has(.login-register-screen) .key {
  min-height: 44px;
}

.helper-zone {
  position: absolute;
  left: 0;
  width: 150px;
  bottom: 207px;
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding-left: 0;
  z-index: 2;
}

.helper-mascot {
  width: 63px;
  height: 60px;
  margin-left: 0;
  object-fit: contain;
  object-position: left bottom;
  display: block;
}

.helper-bubble {
  position: relative;
  width: 92px;
  height: 34px;
  margin-left: -5px;
  margin-bottom: 4px;
  display: block;
  flex: 0 0 auto;
}

.helper-bubble__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.helper-bubble__text {
  position: absolute;
  left: 7px;
  right: 6px;
  top: 3px;
  color: #15145b;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
}

.helper-zone--login {
  bottom: 262px;
}

.helper-mascot--login {
  width: 63px;
  height: 60px;
}

.helper-bubble--login {
  width: 92px;
  height: 34px;
  margin-left: -5px;
  margin-bottom: 4px;
}

.helper-bubble__text--login {
  left: 4px;
  right: 4px;
  top: 4px;
}

.keypad {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 2;
  padding: 0 6px 24px;
}

.keypad__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.key {
  min-height: 46px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 0.95));
  color: #1f2438;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.key__digit {
  font-size: 20px;
  line-height: 1;
}

.key__letters {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.key--empty {
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.key--delete {
  font-size: 18px;
}

.home-indicator {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 134px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.92);
  z-index: 4;
}

.screen--otp {
  background: #00247d;
}

.screen--otp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/figma/startup/guide-bg.png") center / cover no-repeat;
}

.otp-back-button {
  position: absolute;
  top: 44px;
  left: 6px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.otp-back-button img {
  width: 24px;
  height: 24px;
  display: block;
}

.otp-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.otp-main {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  height: 384px;
}

.otp-lock {
  position: absolute;
  top: 0;
  left: 168px;
  width: 24px;
  height: 29px;
  display: block;
}

.otp-title,
.otp-subtitle,
.otp-phone {
  position: absolute;
  left: 24px;
  right: 24px;
  margin: 0;
  text-align: center;
}

.otp-title {
  top: 58px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.otp-subtitle {
  top: 97px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.otp-phone {
  top: 121px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.otp-boxes {
  position: absolute;
  top: 168px;
  left: 0;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.otp-box {
  width: 48px;
  height: 56px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #e2e8f0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #333;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
}

.otp-box.is-active {
  border-color: #44d7b6;
}

.otp-box.is-error {
  border-color: #dd0d16;
  color: #dd0d16;
}

.otp-caret {
  width: auto;
  height: 24px;
  color: #333;
  font-size: 24px;
  line-height: 24px;
}

.otp-caret::before {
  content: "|";
  animation: blink 1s step-end infinite;
}

.otp-error-row {
  position: absolute;
  top: 232px;
  left: 24px;
  width: 312px;
  height: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ff1111;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
}

.otp-error-row img {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.otp-actions-row {
  position: absolute;
  top: 249px;
  left: 0;
  right: 0;
  height: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.otp-actions-row.is-error {
  top: 281px;
}

.otp-no-code {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: underline;
  white-space: nowrap;
}

.otp-resend {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #44d7b6;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.otp-resend[disabled] {
  cursor: default;
}

.otp-countdown {
  width: 56px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  text-align: center;
}

.otp-voice-button {
  position: absolute;
  top: 289px;
  left: 70px;
  width: 220px;
  height: 42px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.otp-screen--error .otp-voice-button {
  top: 321px;
}

.otp-voice-button img {
  width: 15px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
}

.otp-helper-zone {
  position: absolute;
  left: 0;
  top: 458px;
  z-index: 2;
  width: 150px;
  height: 60px;
}

.otp-helper-zone img {
  width: 150px;
  height: 60px;
  display: block;
  object-fit: contain;
  object-position: left top;
}

.screen__content:has(.otp-screen) .keypad {
  top: 518px;
  bottom: 0;
  padding: 4px 4px 68px;
  background: #cfd4db;
}

.screen__content:has(.otp-screen) .key {
  min-height: 44px;
}

.intake-screen {
  background: #fff;
  color: var(--ink-strong);
}

.intake-scroll {
  background: #fff;
}

.intake-header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 24px;
  background: #fff;
}

.intake-header__back {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.intake-header__arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.intake-header__title {
  margin: 0 0 0 14px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #333;
}

.intake-page {
  padding: 104px 24px 170px;
}

.intake-page--contact {
  padding-bottom: 176px;
}

.intake-page--basic {
  padding-bottom: 176px;
}

.intake-page--bank {
  padding-bottom: 176px;
}

.intake-page--id {
  padding-bottom: 72px;
}

.intake-page--id-camera {
  position: relative;
  min-height: 780px;
  padding-top: 96px;
  background: rgba(15, 23, 42, 0.95);
  overflow: hidden;
}

.intake-page--id-result {
  padding: 108px 24px 72px;
}

.intake-page__progress {
  width: 360px;
  margin: 6px 0 16px -24px;
}

.intake-info-note-row {
  position: relative;
  width: 312px;
  min-height: 90px;
}

.intake-info-note {
  position: relative;
  width: 253px;
  height: 56px;
}

.intake-info-note--bank {
  height: 76px;
}

.intake-info-note__bg {
  display: block;
  width: 100%;
  height: 100%;
}

.intake-info-note__copy,
.intake-info-note__paragraph {
  position: absolute;
  left: 20px;
  top: 8px;
  margin: 0;
}

.intake-info-note__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}

.intake-info-note__copy strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: #00247d;
}

.intake-info-note__paragraph {
  width: 218px;
  font-size: 14px;
  line-height: 16px;
  color: #333;
}

.intake-info-note-row--bank {
  min-height: 92px;
}

.intake-info-note-row--id {
  min-height: 92px;
}

.intake-info-note-row--id-result {
  min-height: 92px;
}

.intake-info-note__checks {
  position: absolute;
  left: 8px;
  top: 8px;
  display: grid;
  gap: 6px;
  width: 216px;
  color: #00247d;
}

.intake-info-note__checks .intake-security__item {
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  line-height: 14px;
}

.intake-info-note__checks .intake-security__icon {
  flex: 0 0 16px;
  margin-top: -1px;
}

.intake-info-note--id {
  width: 243px;
  height: 56px;
}

.intake-info-note__paragraph--id {
  left: 12px;
  top: 7px;
  width: 214px;
  color: #00247d;
  font-size: 12px;
  line-height: 16px;
}

.intake-info-note__mascot {
  position: absolute;
  top: -8px;
  right: -16px;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.intake-info-note__mascot--result {
  top: -6px;
  right: -8px;
  width: 71px;
  height: 90px;
}

.intake-security {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  color: #00247d;
  font-size: 14px;
  line-height: 14px;
}

.intake-security__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.intake-security__icon {
  width: 16px;
  height: 16px;
  display: block;
  color: #00247d;
}

.intake-security__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-contact-consent {
  margin: 8px 0 0;
  width: 312px;
  font-size: 12px;
  line-height: 14px;
  color: #bababa;
}

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

.intake-contact-card,
.intake-basic-panel {
  width: 312px;
  border-radius: 10px;
  border: 1px solid rgba(0, 36, 125, 0.1);
  background: #fff;
}

.intake-contact-card {
  padding: 16px 16px 18px;
}

.intake-contact-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.intake-contact-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #333;
}

.intake-contact-card__title span {
  color: #dd0d16;
}

.intake-contact-card__autofill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 12px;
  color: #00247d;
}

.intake-contact-card__autofill-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.intake-contact-card__autofill-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-field,
.intake-basic-field {
  display: block;
  width: 100%;
  margin-top: 18px;
  text-align: left;
}

.intake-field__label,
.intake-basic-field__label {
  display: block;
  font-size: 12px;
  line-height: 12px;
  color: #333;
}

.intake-field__box,
.intake-basic-field__box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #f3f5f9;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.intake-field__box.is-error {
  border-color: #ff1111;
  background: #fff;
}

.intake-basic-field__box.is-error {
  border-color: #ff1111;
  background: #fff;
}

.intake-field__input,
.intake-basic-field__input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

.intake-field__input.is-error {
  color: #ff1111;
}

.intake-basic-field__input.is-error {
  color: #ff1111;
}

.intake-field__input::placeholder,
.intake-basic-field__input::placeholder {
  color: #999;
}

.intake-field__icon,
.intake-basic-field__icon,
.intake-basic-field__icon-button {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #9aa9c8;
}

.intake-field__icon svg,
.intake-basic-field__icon svg,
.intake-basic-field__icon-button svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-field__error {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: #ff1111;
}

.intake-field__error.is-hidden {
  display: none;
}

.intake-field__error-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
}

.intake-field__error-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-field__error-text {
  display: block;
}

.intake-basic-field__error {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: #ff1111;
}

.intake-basic-field__error.is-hidden {
  display: none;
}

.intake-basic-field__error-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
}

.intake-basic-field__error-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-basic-field__error-text {
  display: block;
}

.intake-basic-field__icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.intake-field--relation {
  overflow: hidden;
}

.intake-relation-scroll {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.intake-relation-scroll::-webkit-scrollbar {
  display: none;
}

.intake-relation-chip {
  flex: 0 0 auto;
  min-width: 72px;
  height: 32px;
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  background: #fff;
  font-size: 16px;
  line-height: 30px;
  color: #999;
  white-space: nowrap;
}

.intake-relation-chip.is-active {
  border-color: #00247d;
  color: #00247d;
}

.intake-add-contact {
  width: 312px;
  min-height: 52px;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #00247d;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.intake-add-contact__title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 14px;
  color: #00247d;
}

.intake-add-contact__icon {
  width: 16px;
  height: 16px;
  display: block;
}

.intake-add-contact__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-add-contact__meta {
  font-size: 12px;
  line-height: 12px;
  color: #333;
}

.intake-basic-panel {
  margin-top: 18px;
  padding: 24px 16px 24px;
  background: linear-gradient(180deg, #e2e9f7 0, #ffffff 32px);
}

.intake-basic-panel--bank {
  margin-top: 16px;
  min-height: 192px;
}

.intake-id-card {
  width: 312px;
  margin-top: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 36, 125, 0.1);
  background: #fff;
}

.intake-id-card--guide {
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #e2e9f7 0, #ffffff 28px);
}

.intake-id-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #333;
}

.intake-id-card__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #333;
  font-size: 12px;
  line-height: 16px;
}

.intake-id-upload {
  position: relative;
  width: 312px;
  height: 187px;
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
}

.intake-id-upload__image {
  display: block;
  width: 100%;
  height: 100%;
}

.intake-id-upload__toolbar {
  position: absolute;
  left: 33px;
  top: 17px;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(43, 43, 43, 0.92);
  color: #fff;
  z-index: 2;
}

.intake-id-upload__toolbar-text,
.intake-id-upload__toolbar-or {
  font-size: 14px;
  line-height: 14px;
}

.intake-id-upload__toolbar-action {
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  color: #fff;
}

.intake-id-upload__toolbar-or {
  margin-left: 6px;
}

.intake-id-upload__toolbar-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.intake-id-upload__toolbar-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-id-upload__center-action {
  position: absolute;
  left: 132px;
  top: 70px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #00247d;
  box-shadow: 0 8px 18px rgba(0, 36, 125, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.intake-id-upload__center-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.intake-id-upload__center-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-id-consent {
  margin-top: 14px;
  width: 312px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.intake-id-consent__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: block;
}

.intake-id-consent__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-id-consent__text {
  padding-top: 3px;
  color: #666;
  font-size: 12px;
  line-height: 18px;
}

.intake-id-consent__text span {
  text-decoration: underline;
}

.intake-id-card--review {
  margin-top: 18px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, rgba(226, 233, 247, 0.58) 0, rgba(255, 255, 255, 0.96) 32px);
  opacity: 0.5;
}

.intake-id-card__review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.intake-id-card__title--review {
  padding-top: 1px;
}

.intake-id-card__summary {
  width: 234px;
  margin: 10px 0 0;
  color: #333;
  font-size: 12px;
  line-height: 16px;
}

.intake-id-card__lock {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: block;
}

.intake-id-card__lock svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-id-preview {
  margin-top: 14px;
  display: grid;
  gap: 16px;
}

.intake-id-preview__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intake-id-preview__field {
  position: relative;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 4px;
  background: #f3f5f9;
}

.intake-id-preview__label {
  display: block;
  color: #333;
  font-size: 12px;
  line-height: 12px;
}

.intake-id-preview__field--select {
  padding-right: 38px;
}

.intake-id-preview__chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 16px;
  transform: translateY(-50%);
  color: #a4afc0;
}

.intake-id-preview__chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-id-result-card {
  width: 312px;
  margin-top: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 36, 125, 0.1);
  background: #fff;
}

.intake-id-result-card--success {
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #e2e9f7 0, #ffffff 32px);
}

.intake-id-result-card--form {
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, rgba(226, 233, 247, 0.72) 0, #ffffff 32px);
}

.intake-id-result-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #333;
}

.intake-id-result-success {
  position: relative;
  width: 280px;
  height: 168px;
  margin-top: 12px;
  border-radius: 8.974px;
  overflow: hidden;
  background: #edf0f7;
}

.intake-id-result-success__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.intake-id-result-success__check {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  display: block;
}

.intake-id-result-card__meta {
  margin-top: 10px;
}

.intake-id-result-card__meta-title {
  margin: 0;
  font-size: 14px;
  line-height: 14px;
  color: #333;
}

.intake-id-result-card__meta-links {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.intake-id-result-card__meta-links button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 14px;
}

.intake-id-result-card__meta-links button:first-child {
  color: #6688ea;
}

.intake-id-result-card__meta-links button:last-child {
  color: #666;
}

.intake-id-result-form {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.intake-id-result-field {
  width: 280px;
}

.intake-id-result-form__submit {
  width: 252px;
  min-height: 48px;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intake-helper-wrap--id-result {
  margin-top: 18px;
}

.intake-helper-wrap--id {
  margin-top: 18px;
}

.intake-screen--id-camera,
.intake-screen--id-camera .screen__content,
.intake-screen--id-camera .intake-scroll,
.intake-screen--id-result,
.intake-screen--id-result .screen__content,
.intake-screen--id-result .intake-scroll {
  background: #fff;
}

.intake-screen--id-camera .intake-header {
  background:transparent;
}

.intake-screen--id-camera .intake-header__back,
.intake-screen--id-camera .intake-header__title {
  color: #fff;
}

.intake-camera-screen__content {
  position: relative;
  z-index: 1;
  min-height: 684px;
  padding: 26px 24px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
}

.intake-camera-screen__title {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.intake-camera-screen__preview {
  position: relative;
  left: 50%;
  width: 312px;
  height: 208.66px;
  margin-top: 24px;
  transform: translateX(-50%);
}

.intake-camera-screen__preview-surface {
  position: absolute;
  inset: 0;
  background: transparent;
}

.intake-camera-screen__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.intake-camera-screen__outline {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.intake-camera-screen__tips-board {
  align-self: center;
  width: 312px;
  height: auto;
  margin: 24px 0 0;
  display: block;
}

.intake-camera-screen__shutter {
  display: block;
  width: 252px;
  height: 48px;
  margin: auto auto 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.intake-camera-screen__shutter img {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-basic-field + .intake-basic-field {
  margin-top: 16px;
}

.intake-basic-field--button {
  padding: 0;
  background: transparent;
  border: 0;
}

.intake-basic-field__value {
  flex: 1 1 auto;
  min-height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: transparent;
}

.intake-basic-field__value.is-filled {
  color: #333;
}

.intake-basic-field__value.is-placeholder {
  color: #999;
}

.intake-legal {
  width: 312px;
  margin: 22px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #999;
}

.intake-legal button {
  color: inherit;
  text-decoration: underline;
}

.intake-helper-wrap {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.intake-helper {
  position: relative;
  display: block;
  width: 117px;
  height: 32px;
}

.intake-helper--top {
  position: absolute;
  top: 12px;
  right: 16px;
}

.intake-helper__service {
  display: block;
  width: 100%;
  height: 100%;
}

.intake-helper__bubble {
  position: absolute;
  left: 0;
  top: 4px;
  width: 84px;
  height: 24px;
}

.intake-helper__bubble-bg {
  display: block;
  width: 100%;
  height: 100%;
}

.intake-helper__bubble-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 7px;
  font-size: 10px;
  line-height: 10px;
  color: #fff;
  text-align: center;
}

.intake-helper--bottom .intake-helper__bubble-text {
  color: #15145b;
}

.intake-helper__mascot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33px;
  height: 32px;
  object-fit: contain;
}

.intake-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 24px 54px;
}

.intake-footer__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.intake-footer__button {
  position: relative;
  width: 252px;
  min-height: 48px;
  margin: 0 auto;
  display: flex;
}

.modal-overlay--intake {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5.437px);
}

.modal-overlay--contact-declaration {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: none;
}

.intake-modal {
  width: 300px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(16, 24, 57, 0.28);
}

.intake-modal--contact-confirm {
  position: relative;
  min-height: 424px;
  padding: 16px 16px 24px;
  border-radius: 8px;
  box-shadow: none;
}

.intake-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
}

.intake-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intake-modal__declaration-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px 0 18px;
}

.intake-modal__declaration-mascot {
  flex: 0 0 44px;
  width: 44px;
  height: 40px;
  object-fit: contain;
}

.intake-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
}

.intake-modal__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intake-modal__title,
.intake-modal__headline {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #333;
}

.intake-confirm-box {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f3f5f9;
}

.intake-confirm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

.intake-confirm-row + .intake-confirm-row {
  margin-top: 4px;
}

.intake-confirm-row--muted {
  color: #666;
}

.intake-modal__confirm {
  width: 252px;
  height: 48px;
  margin: 16px auto 0;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(93deg, #de0f16 0%, #00247d 100%);
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.intake-modal__text-action {
  display: block;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 16px;
  color: #999;
  text-decoration: underline;
}

.intake-modal--email {
  overflow: hidden;
}

.intake-modal--email .intake-modal__headline {
  padding: 16px 20px 0;
}

.intake-email-example {
  width: 268px;
  margin: 18px auto 0;
  padding: 16px 12px;
  border-radius: 4px;
  background: #f3f5f9;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #00247d;
}

.intake-email-tips {
  margin: 18px 24px 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

.intake-email-close {
  width: 100%;
  height: 44px;
  margin-top: 18px;
  border-top: 1px solid rgba(60, 60, 67, 0.36);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #373b79;
}

.modal-overlay.modal-overlay--picker {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: none;
}

.intake-picker-sheet {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #fff;
  box-shadow: none;
}

.intake-picker-sheet--standard {
  height: 406px;
}

.intake-picker-sheet--bank {
  height: 598px;
}

.intake-picker-sheet__header {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #e9ecf1;
}

.intake-picker-sheet__header h2 {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.intake-picker-sheet__close {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: -3px;
  color: #111;
  font-size: 28px;
  line-height: 24px;
  font-weight: 300;
}

.intake-picker-sheet__options {
  box-sizing: border-box;
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  margin: 20px 16px 0;
  padding: 0 0 20px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.intake-picker-sheet__options::-webkit-scrollbar {
  display: none;
}

.intake-picker-sheet__option {
  position: relative;
  box-sizing: border-box;
  min-height: 52px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f9fafc;
  color: #111;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  overflow: hidden;
}

.intake-picker-sheet__option.is-active {
  border-color: #dde2e8;
}

.intake-picker-sheet__option-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intake-picker-sheet__option.is-bank {
  font-size: 14px;
  padding-right: 14px;
}

.intake-picker-sheet__selected {
  flex: 0 0 16px;
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  margin-left: auto;
  object-fit: contain;
}

.intake-picker-sheet__bank-icon {
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  border-radius: 86px;
  background: #eef2f7;
  color: #fff;
  font-size: 8px;
  line-height: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.intake-picker-sheet__bank-logo {
  flex: 0 0 28px;
  display: block;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  border-radius: 86px;
  object-fit: cover;
  background: #fff;
}

.intake-picker-sheet__bank-logo-frame {
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  border: 1px solid #e9ecf1;
  border-radius: 86px;
  background: #fff;
}

.intake-picker-sheet__bank-logo-frame img {
  display: block;
  width: 20px;
  height: 10px;
  object-fit: contain;
}

.intake-picker-sheet__bank-icon--kbank {
  background: #009a40;
}

.intake-picker-sheet__bank-icon--scb {
  background: #4b2a86;
}

.intake-picker-sheet__bank-icon--bbl {
  background: #0877ff;
}

.intake-picker-sheet__bank-icon--ktb {
  background: #18a8e8;
}

.intake-picker-sheet__bank-icon--krungsri {
  background: #b7962d;
}

.intake-picker-sheet__bank-icon--ttb {
  background: #fff;
  color: #0066b3;
  border: 1px solid #e9ecf1;
}

.intake-picker-sheet__bank-icon--gsb {
  background: #b98a55;
}

.intake-picker-sheet__footer {
  flex: 0 0 78px;
  padding: 6px 16px 24px;
}

.intake-picker-sheet__confirm {
  display: grid;
  place-items: center;
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(93deg, #de0f16 0%, #00247d 100%);
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.apply-visual-screen {
  background: #fff;
  color: #111;
}

.apply-visual-gradient {
  position: absolute;
  inset: 0 0 auto;
  height: 250px;
  background: linear-gradient(180deg, #c7e2ff 0%, #fff 100%);
  z-index: 0;
}

.apply-visual-screen .status-bar {
  color: #111;
  z-index: 8;
}

.apply-visual-screen .portal-info-header {
  background: transparent;
  box-shadow: none;
}

.apply-visual-screen .portal-info-header h1 {
  color: #111;
  font-family: Kanit, var(--font-family);
  font-weight: 400;
}

.apply-visual-scroll {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 78px;
  z-index: 2;
  height: auto;
  overflow-x: hidden;
}

.apply-visual-page {
  min-height: 100%;
  padding: 14px 0 18px;
}

.apply-progress {
  position: relative;
  width: 360px;
  height: 64px;
  margin: 0 auto;
}

.apply-progress__track {
  position: absolute;
  top: 11px;
  left: 28px;
  width: 296px;
  height: 8px;
  border-radius: 34px;
  background: #bed9ef;
}

.apply-progress__fill {
  position: absolute;
  top: 0;
  display: block;
  height: 8px;
  border-radius: inherit;
  background: linear-gradient(90deg, #3753b6 0%, #9e66ff 100%);
  opacity: 0;
}

.apply-progress__fill.is-active {
  opacity: 1;
}

.apply-progress__fill--segment-1 {
  left: 11px;
  width: 67px;
}

.apply-progress__fill--segment-2 {
  left: 78px;
  width: 69px;
}

.apply-progress__fill--segment-3 {
  left: 147px;
  width: 69px;
}

.apply-progress__steps {
  position: absolute;
  inset: 0;
}

.apply-progress__step,
.apply-progress__reward {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  color: #4e7b9e;
}

.apply-progress__step {
  position: absolute;
  top: 0;
  width: 54px;
}

.apply-progress__step:nth-child(1) {
  left: 12px;
}

.apply-progress__step:nth-child(2) {
  left: 79px;
}

.apply-progress__step:nth-child(3) {
  left: 148px;
}

.apply-progress__step:nth-child(4) {
  left: 217px;
}

.apply-progress__dot {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #bed9ef;
  border-radius: 50%;
  background: #f7fbff;
  color: #4e7b9e;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.apply-progress__step.is-active .apply-progress__dot {
  border-color: #c87dff;
  background: linear-gradient(180deg, #a811ff 0%, #9224e5 100%);
  color: #fff;
}

.apply-progress__step.is-done .apply-progress__dot {
  border-color: #00247d;
  background: #00247d;
  color: #fff;
}

.apply-progress__dot svg {
  width: 18px;
  height: 18px;
}

.apply-progress__label,
.apply-progress__reward-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 13px;
  text-align: center;
  color: currentColor;
  white-space: normal;
}

.apply-progress__step.is-active {
  color: #00247d;
}

.apply-progress__step.is-done {
  color: #00247d;
}

.apply-progress__reward {
  position: absolute;
  top: -8px;
  left: 296px;
  width: 46px;
  color: #7529fa;
  font-weight: 500;
}

.apply-progress__reward-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.apply-progress__reward-label {
  margin-top: -2px;
}

.apply-progress--ocr-confirm .apply-progress__track {
  left: 35px;
  width: 281px;
}

.apply-progress--ocr-confirm .apply-progress__fill--segment-1 {
  left: 8px;
  width: 78px;
}

.apply-progress--ocr-confirm .apply-progress__fill--segment-2 {
  left: 86px;
  width: 80px;
}

.apply-progress--ocr-confirm .apply-progress__fill--segment-3 {
  left: 166px;
  width: 74px;
}

.apply-progress--ocr-confirm .apply-progress__step:nth-child(1) {
  left: 19px;
}

.apply-progress--ocr-confirm .apply-progress__step:nth-child(2) {
  left: 105px;
}

.apply-progress--ocr-confirm .apply-progress__step:nth-child(3) {
  left: 191px;
}

.apply-progress--ocr-confirm .apply-progress__reward {
  left: 288px;
}

.apply-progress--ocr-confirm .apply-progress__step {
  width: 58px;
}

.apply-progress--ocr-confirm .apply-progress__label,
.apply-progress--ocr-confirm .apply-progress__reward-label {
  font-family: Kanit, var(--font-family);
  font-size: 12px;
  line-height: 13px;
  font-weight: 400;
}

.apply-progress--ocr-confirm .apply-progress__step.is-active .apply-progress__label,
.apply-progress--ocr-confirm .apply-progress__reward-label {
  font-weight: 500;
}

.apply-visual-promo,
.apply-visual-safety {
  display: block;
  width: 328px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.apply-visual-promo {
  height: 70px;
  margin-top: 8px;
}

.apply-visual-safety {
  height: 70px;
  margin-top: 10px;
}

.apply-visual-card {
  width: 328px;
  margin: 16px auto 0;
  border-radius: 10px;
  background: #f7f8fa;
}

.apply-visual-card--basic {
  min-height: 390px;
  padding: 16px 16px 18px;
}

.apply-visual-card--bank {
  min-height: 204px;
  padding: 16px 16px 20px;
}

.apply-visual-field {
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.apply-visual-field + .apply-visual-field {
  margin-top: 16px;
}

.apply-visual-field__title {
  display: flex;
  align-items: center;
  min-height: 20px;
  min-width: 0;
  gap: 4px;
}

.apply-visual-field__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.apply-visual-field__subtitle {
  font-size: 14px;
  line-height: 20px;
  color: #aab0c2;
  white-space: nowrap;
}

.apply-visual-field__required {
  margin-left: 2px;
  color: #ec2828;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.apply-visual-complete {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 72px;
  height: 20px;
  border-radius: 29px;
  background: rgba(59, 255, 146, 0.1);
  color: #339b56;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
}

.apply-visual-complete img {
  display: block;
  width: 14px;
  height: 14px;
}

.apply-visual-field__box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-top: 6px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fff;
}

.apply-visual-field.is-complete .apply-visual-field__box {
  border-color: #dde2e8;
}

.apply-visual-field.is-focused .apply-visual-field__box {
  border-color: #1f2ca9;
}

.apply-visual-field.is-error .apply-visual-field__box {
  border-color: #f44336;
}

.apply-visual-field__value,
.apply-visual-field__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apply-visual-field__value.is-placeholder,
.apply-visual-field__input::placeholder {
  color: #aab0c2;
}

.apply-visual-field.is-error .apply-visual-field__value,
.apply-visual-field.is-error .apply-visual-field__input {
  color: #f11;
}

.apply-visual-field__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  object-fit: contain;
}

.apply-visual-field__error {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: 6px;
  color: #f11;
  font-size: 12px;
  line-height: 16px;
}

.apply-visual-field__error.is-hidden {
  display: none;
}

.apply-visual-field__error img {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 1px;
}

.apply-email-suggestions {
  position: relative;
  z-index: 5;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.apply-email-suggestions__item {
  display: block;
  width: 100%;
  min-height: 36px;
  padding: 8px 14px;
  color: #1f2ca9;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.apply-email-suggestions__item + .apply-email-suggestions__item {
  border-top: 1px solid #eef1f6;
}

.apply-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.apply-contact-card {
  padding: 16px 16px 20px;
}

.apply-contact-card__header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 20px;
  margin-bottom: 14px;
}

.apply-contact-card__mark {
  width: 3px;
  height: 14px;
  margin-right: 8px;
  border-radius: 22px;
  background: #9a3cff;
}

.apply-contact-card__header h2 {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.apply-contact-card__delete {
  position: absolute;
  top: -1px;
  right: 0;
  width: 24px;
  height: 24px;
}

.apply-contact-card__delete img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.apply-add-contact-card {
  position: relative;
  width: 328px;
  min-height: 110px;
  margin: 16px auto 0;
  padding: 10px 16px 12px 56px;
  border: 1px solid #eaedff;
  border-radius: 10px;
  background: linear-gradient(180deg, #e8ecff 0%, #fff 70%);
}

.apply-add-contact-card__mascot {
  position: absolute;
  top: 10px;
  left: 14px;
  width: 33px;
  height: 32px;
  object-fit: contain;
}

.apply-add-contact-card__bubble {
  min-height: 47px;
  padding: 5px 10px 5px 12px;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
  color: #00247d;
  font-size: 14px;
  line-height: 18px;
}

.apply-add-contact-card__button {
  display: grid;
  place-items: center;
  width: 254px;
  height: 30px;
  margin-top: 10px;
  border-radius: 17px;
  background: #00247d;
  color: #fff;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.apply-bank-tip-card {
  width: 328px;
  height: 82px;
  margin: 16px auto 0;
  overflow: hidden;
  border: 1px solid #eaedff;
  border-radius: 10px;
  background: #f8faff;
}

.apply-bank-tip-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply-visual-id-card {
  width: 328px;
  height: 307px;
  margin: 16px auto 0;
  padding: 16px 16px 24px;
  border-radius: 10px;
  background: #f7f8fa;
}

.apply-visual-id-card h2 {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}

.apply-visual-id-card p {
  width: 291px;
  margin: 8px auto 0;
  color: #898fb5;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.apply-visual-id-card__upload {
  position: relative;
  display: block;
  width: 296px;
  height: 187px;
  margin: 16px auto 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.apply-visual-id-card__upload > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply-visual-id-card__tip {
  position: absolute;
  top: 18px;
  left: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 207px;
  height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(43, 43, 43, 0.92);
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
}

.apply-visual-id-card__tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(43, 43, 43, 0.92);
}

.apply-visual-id-card__camera {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: #fff;
}

.apply-visual-id-card__camera svg {
  display: block;
  width: 100%;
  height: 100%;
}

.apply-id-phone-notice {
  position: relative;
  display: flex;
  align-items: center;
  width: 328px;
  height: 82px;
  margin: 10px auto 0;
  padding: 10px 16px 10px 14px;
  overflow: hidden;
  border: 1px solid #eaedff;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.apply-id-phone-notice__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.apply-id-phone-notice p {
  margin: 0 0 0 21px;
  color: #00247d;
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 400;
}

.apply-id-result-form {
  height: 484px;
  padding: 16px;
}

.apply-visual-screen--id-result .apply-visual-scroll {
  bottom: 96px;
}

.apply-visual-screen--id-result .apply-visual-field + .apply-visual-field {
  margin-top: 16px;
}

.apply-visual-screen--id-result .apply-visual-field__label,
.apply-visual-screen--id-result .apply-laser-card__head h2,
.apply-visual-screen--id-result .apply-laser-card .apply-visual-field__label {
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.apply-visual-screen--id-result .apply-visual-field__value,
.apply-visual-screen--id-result .apply-visual-field__input {
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.apply-visual-screen--id-result .apply-visual-field__box {
  height: 50px;
  margin-top: 6px;
  padding: 0 12px;
  border-color: #dde2e8;
  border-radius: 10px;
}

.apply-visual-screen--id-result .apply-visual-field__icon {
  display: none;
}

.apply-id-form-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.apply-id-form-row .apply-visual-field {
  width: calc(50% - 6px);
}

.apply-id-form-row .apply-visual-field + .apply-visual-field {
  margin-top: 0;
}

.apply-id-form-row + .apply-visual-field {
  margin-top: 16px;
}

.apply-id-birth-field {
  position: relative;
  text-align: left;
}

.apply-id-birth-field .apply-visual-field__box {
  cursor: pointer;
}

.apply-id-birth-calendar {
  display: grid;
  flex: 0 0 18px;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 10px;
}

.apply-id-birth-calendar img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.apply-inline-calendar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 104px;
  z-index: 7;
  width: 328px;
  padding: 14px 14px 16px;
  border: 1px solid #dde2e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 36, 125, 0.14);
}

.apply-inline-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
}

.apply-inline-calendar__header button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #00247d;
  font-size: 24px;
  line-height: 24px;
}

.apply-inline-calendar__header h3 {
  margin: 0;
  color: #111;
  font-family: Kanit, var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.apply-inline-calendar__weekdays,
.apply-inline-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.apply-inline-calendar__weekdays {
  margin-top: 10px;
  color: #898fb5;
  font-family: Kanit, var(--font-family);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.apply-inline-calendar__grid {
  margin-top: 6px;
}

.apply-inline-calendar__day {
  display: grid;
  place-items: center;
  width: 36px;
  height: 32px;
  border-radius: 10px;
  color: #111;
  font-family: Kanit, var(--font-family);
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
}

.apply-inline-calendar__day.is-selected {
  background: linear-gradient(93deg, #de0f16 0%, #00247d 100%);
  color: #fff;
  font-weight: 500;
}

.apply-inline-calendar__day.is-empty {
  pointer-events: none;
}

.apply-inline-calendar__day:disabled {
  color: #c5c9d6;
}

.apply-laser-card {
  height: 233px;
  padding: 16px;
}

.apply-laser-card__head {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.apply-laser-card__head h2 {
  position: relative;
  margin: 0;
  color: #111;
  padding-left: 8px;
}

.apply-laser-card__head h2::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 14px;
  margin-left: -8px;
  margin-top: 3px;
  border-radius: 22px;
  background: #9a3cff;
}

.apply-laser-card__head span {
  color: #aab0c2;
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.apply-laser-card__copy {
  margin: 6px 0 0;
  color: #898fb5;
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
}

.apply-laser-card .apply-visual-field {
  margin-top: 16px;
}

.apply-laser-card__help {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  color: #00247d;
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.apply-laser-card__help img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.apply-laser-card__example {
  width: 187px;
  height: 29px;
  margin: 14px auto 0;
  padding-top: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  color: #6a7282;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.apply-final-tip {
  position: absolute;
  left: 97px;
  top: 0;
  width: 232px;
  height: 28px;
  margin: 0;
  pointer-events: none;
}

.apply-final-tip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apply-visual-screen--id-result .apply-visual-pdpa {
  margin-top: 16px;
}

.apply-id-failure-banner {
  display: flex;
  align-items: center;
  width: 328px;
  min-height: 56px;
  margin: 16px auto 0;
  padding: 9px 14px;
  border-radius: 8px;
  background: #fff1f1;
}

.apply-id-failure-banner__icon {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f44336;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}

.apply-id-failure-banner p {
  margin: 0 0 0 10px;
  color: #f44336;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

.apply-id-failure-card {
  min-height: 346px;
  padding: 18px 16px 16px;
  text-align: center;
}

.apply-id-failure-card h2 {
  margin: 0;
  color: #f44336;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.apply-id-failure-card p {
  margin: 10px 0 14px;
  color: #666;
  font-size: 13px;
  line-height: 18px;
  text-align: left;
}

.apply-id-failure-card img {
  display: block;
  width: 255px;
  height: 185px;
  margin: 0 auto;
  object-fit: contain;
}

.apply-visual-pdpa {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 280px;
  margin: 20px auto 0;
  color: #aab0c2;
}

.apply-visual-pdpa img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: -1px;
  object-fit: contain;
}

.apply-visual-pdpa p {
  margin: 0;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.apply-visual-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 78px;
  padding: 6px 16px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 36%);
}

.apply-visual-footer--with-tip {
  height: 94px;
  padding-top: 22px;
  padding-bottom: 24px;
}

.apply-visual-next {
  display: grid;
  place-items: center;
  width: 328px;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(93deg, #de0f16 0%, #00247d 100%);
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.apply-visual-next.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.apply-visual-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modal-overlay--laser-help {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: none;
}

.laser-help-dialog {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  width: auto;
  height: 480px;
  padding: 0;
  transform: translateY(-50%);
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #d7f0e5 0, #ffffff 80px),
    #fff;
  text-align: center;
}

.laser-help-dialog__hero {
  position: relative;
  height: 86px;
}

.laser-help-dialog__shield {
  position: absolute;
  left: 50%;
  top: 20px;
  display: block;
  width: 270px;
  height: 78px;
  transform: translateX(-50%);
  object-fit: contain;
}

.laser-help-dialog h2 {
  height: 24px;
  margin: 0 22px;
  color: #111;
  font-family: Kanit, var(--font-family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.laser-help-dialog__copy {
  margin: 4px 22px 0;
  color: #898fb5;
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.laser-help-dialog__card-wrap {
  position: relative;
  width: 268px;
  height: 130px;
  margin: 12px auto 0;
}

.laser-help-dialog__card {
  display: block;
  width: 250px;
  height: 86px;
  margin: 0 auto;
  object-fit: contain;
}

.laser-help-dialog__example {
  position: absolute;
  left: 0;
  right: 0;
  top: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 268px;
  height: 44px;
  border: 1px solid #dddeea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(119, 156, 149, 0.25);
  color: #111;
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.laser-help-dialog__example img {
  position: absolute;
  right: 24px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.laser-help-dialog__safe {
  position: relative;
  display: block;
  width: 268px;
  height: 95px;
  margin: 12px auto 0;
  padding: 0;
  border: 1px solid #bde1c0;
  border-radius: 10px;
  background: #f0f9f4;
  text-align: left;
}

.laser-help-dialog__safe img {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.laser-help-dialog__safe h3 {
  position: absolute;
  left: 34px;
  right: 10px;
  top: 8px;
  height: 18px;
  margin: 0;
  color: #339b56;
  font-family: Kanit, var(--font-family);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.laser-help-dialog__safe p {
  position: absolute;
  left: 14px;
  right: 8px;
  top: 32px;
  margin: 0;
  color: #339b56;
  font-family: Kanit, var(--font-family);
  font-size: 13px;
  line-height: 15px;
  font-weight: 300;
}

.laser-help-dialog__button {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 252px;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(93deg, #de0f16 0%, #00247d 100%);
  color: #fff;
  font-family: Kanit, var(--font-family);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
}

.apply-visual-footer--dual {
  display: flex;
  gap: 14px;
}

.apply-visual-action {
  display: grid;
  place-items: center;
  width: 157px;
  height: 48px;
  border-radius: 24px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.apply-visual-action--outline {
  border: 1px solid #00247d;
  background: #fff;
  color: #00247d;
}

.apply-visual-action--primary {
  background: linear-gradient(93deg, #de0f16 0%, #00247d 100%);
  color: #fff;
}

.intake-modal__statement {
  width: 268px;
  height: 264px;
  margin: 8px auto 0;
  padding: 8px;
  overflow-y: auto;
  border-radius: 4px;
  background: #f3f5f9;
  color: #666;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  white-space: normal;
}

.intake-modal__statement::-webkit-scrollbar {
  width: 3px;
}

.intake-modal__statement::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: #c7cbd4;
}

.profile-screen {
  background: #fff;
  color: var(--ink-strong);
}

.profile-scroll {
  background: #fff;
}

.profile-page {
  min-height: 100%;
  background: #fff;
}

.profile-hero {
  position: relative;
  height: 240px;
  margin-top: 40px;
  overflow: hidden;
}

.profile-hero__image,
.profile-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.profile-hero__image {
  object-fit: cover;
  object-position: center;
}

.profile-hero__overlay {
  background:
    linear-gradient(328deg, rgba(239, 144, 31, 0.88) 1.28%, rgba(223, 18, 24, 0.68) 11.52%, rgba(0, 36, 125, 0) 98.25%),
    linear-gradient(162deg, rgba(17, 25, 94, 0.88) 0.53%, rgba(0, 36, 125, 0.86) 83.7%);
  opacity: 0.55;
}

.profile-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -72px;
  padding: 0 0 92px;
}

.profile-card {
  position: relative;
  width: 312px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-card--guest {
  min-height: 274px;
}

.profile-card--auth {
  height: 191px;
}

.profile-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-card__body--guest {
  padding: 52px 20px 22px;
}

.profile-card__body--auth {
  padding: 51px 0 0;
}

.profile-avatar {
  position: absolute;
  left: 50%;
  top: -38px;
  transform: translateX(-50%);
  z-index: 2;
  width: 72px;
  height: 72px;
}

.profile-avatar__disc {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
}

.profile-avatar__mascot-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-title--profile {
  font-size: 29px;
  line-height: 1;
}

.brand-title--profile .thai {
  color: #16369a;
}

.profile-brand {
  text-align: center;
}

.profile-brand__caption {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: #999;
}

.profile-guest-contact {
  margin-top: 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #666;
  font-size: 14px;
}

.profile-guest-contact__icon {
  width: 38px;
  height: 38px;
  display: block;
}

.profile-guest-contact__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-guest-contact__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-login-btn {
  width: min(252px, 100%);
  margin-top: 28px;
}

.profile-settings {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-settings img {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-phone {
  margin: 0;
  color: #00247d;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}

.profile-quick-actions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 25px;
}

.profile-quick-actions::before,
.profile-quick-actions::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 1px;
  height: 48px;
  background: #e5e5e5;
}

.profile-quick-actions::before {
  left: 99.5px;
}

.profile-quick-actions::after {
  left: 211.5px;
}

.profile-quick-action {
  min-height: 64px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  color: #666;
}

.profile-quick-action + .profile-quick-action {
  border-left: 0;
}

.profile-quick-action__icon {
  width: 38px;
  height: 38px;
  display: block;
}

.profile-quick-action__icon img,
.profile-quick-action__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-quick-action__label {
  font-size: 11px;
  line-height: 11px;
  text-align: center;
}

.profile-quick-action--benefit .profile-quick-action__label {
  width: 88px;
}

.profile-legal {
  margin: 0;
  width: 312px;
  text-align: center;
  font-size: 12px;
  line-height: 1.17;
  color: #999;
}

.profile-legal--guest {
  margin-top: 22px;
}

.profile-legal--auth {
  margin-top: 24px;
}

.profile-legal button {
  color: inherit;
  text-decoration: underline;
}

.profile-detail-screen {
  background: #fff;
  color: var(--ink-strong);
}

.profile-detail-scroll {
  background: #fff;
}

.profile-detail-page {
  min-height: 100%;
  padding: 48px 0 24px;
  background: #fff;
}

.profile-detail-page--coupon {
  background: #f7f7f7;
}

.profile-detail-page--benefit {
  display: flex;
  flex-direction: column;
}

.profile-detail-page--settings {
  padding-top: 56px;
  background: #f5f5f5;
}

.profile-detail-page--delete-account {
  padding-top: 56px;
  padding-bottom: 28px;
  background: #f5f5f5;
}

.profile-detail-head {
  position: relative;
  min-height: 32px;
  padding: 0 16px;
}

.profile-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
}

.profile-detail-header__back {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  flex: 0 0 auto;
}

.profile-detail-header__arrow {
  width: 11px;
  height: 11px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

.profile-detail-header__title {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #333;
}

.profile-detail-helper {
  display: block;
}

.profile-detail-helper__bubble {
  position: absolute;
  left: 0;
  top: 2px;
  width: 84px;
  height: 24px;
  display: block;
}

.profile-detail-helper__bubble-bg {
  display: block;
  width: 100%;
  height: 100%;
}

.profile-detail-helper__text {
  position: absolute;
  left: 7px;
  right: 8px;
  top: 2px;
  font-size: 9px;
  line-height: 10px;
  text-align: center;
}

.profile-detail-helper__mascot {
  position: absolute;
  right: 0;
  top: 0;
  width: 31px;
  height: 28px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.profile-detail-helper--top {
  position: absolute;
  top: 0;
  right: 16px;
  width: 117px;
  height: 32px;
}

.profile-detail-helper--top .profile-detail-helper__text {
  color: #fff;
}

.profile-detail-helper__service {
  display: block;
  width: 100%;
  height: 100%;
}

.profile-detail-helper-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.profile-detail-helper-wrap--benefit {
  margin-top: 28px;
}

.profile-detail-helper--bottom {
  position: relative;
  width: 102px;
  height: 28px;
}

.profile-detail-helper--bottom .profile-detail-helper__bubble {
  top: 3px;
}

.profile-detail-helper--bottom .profile-detail-helper__text {
  color: #15369a;
}

.profile-detail-legal {
  margin: 20px 24px 0;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  color: #b5b5b5;
}

.profile-detail-legal button {
  color: inherit;
  text-decoration: underline;
}

.profile-settings-screen {
  background: #f5f5f5;
}

.profile-settings-screen .profile-detail-scroll,
.profile-delete-account-screen .profile-detail-scroll {
  background: #f5f5f5;
}

.profile-delete-account-screen {
  background: #f5f5f5;
}

.profile-settings-list {
  margin-top: 8px;
}

.profile-settings-row {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.profile-settings-row + .profile-settings-row {
  margin-top: 1px;
}

.profile-settings-row__label {
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

.profile-settings-row__chevron {
  width: 8px;
  height: 8px;
  margin-right: 2px;
  border-top: 1.5px solid #999;
  border-right: 1.5px solid #999;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.profile-delete-account-hero {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-delete-account-hero__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff1f4 0%, #f7e2e7 100%);
  color: #f11;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.profile-delete-account-hero__title {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: #333;
}

.profile-delete-account-card {
  background: #fff;
}

.profile-delete-account-card--warning {
  margin-top: 17px;
  padding: 12px 24px 14px;
  color: #f11;
  font-size: 14px;
  line-height: 18px;
}

.profile-delete-account-card--warning p {
  margin: 0;
}

.profile-delete-account-card--warning p + p {
  margin-top: 16px;
}

.profile-delete-account-card--rules {
  margin-top: 1px;
  padding: 16px 24px 18px;
}

.profile-delete-account-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: #333;
}

.profile-delete-account-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #666;
  font-size: 14px;
  line-height: 22px;
}

.profile-delete-account-list li + li {
  margin-top: 2px;
}

.profile-delete-account-card__divider {
  margin: 14px -8px 14px -8px;
  height: 1px;
  background: #efefef;
}

.profile-delete-account-card__note {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.profile-delete-account-confirm {
  width: 252px;
  margin: 44px auto 0;
  display: flex;
}

.profile-delete-account-subcopy {
  margin: 14px 24px 0;
  text-align: center;
  color: #999;
  font-size: 14px;
  line-height: 18px;
}

.profile-detail-helper-wrap--delete-account {
  margin-top: 26px;
}

.modal-overlay--profile-delete-confirm {
  padding: 24px 30px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px);
}

.profile-delete-confirm-modal {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(22, 20, 91, 0.22);
  overflow: hidden;
}

.profile-delete-confirm-modal__body {
  padding: 23px 24px 18px;
  text-align: center;
}

.profile-delete-confirm-modal__eyebrow {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.profile-delete-confirm-modal__copy {
  margin: 22px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.profile-delete-confirm-modal__title {
  margin: 16px 0 0;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.profile-delete-confirm-modal__hint {
  margin: 14px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 18px;
}

.profile-delete-confirm-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid rgba(60, 60, 67, 0.3);
}

.profile-delete-confirm-modal__action {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #6132a5;
  background: transparent;
}

.profile-delete-confirm-modal__action + .profile-delete-confirm-modal__action {
  border-left: 0.5px solid rgba(60, 60, 67, 0.3);
}

.profile-delete-confirm-modal__action.is-disabled,
.profile-delete-confirm-modal__action[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.profile-delete-confirm-modal__action.is-active {
  opacity: 1;
}

.modal-overlay--profile-delete-otp,
.modal-overlay--profile-delete-final {
  padding: 24px 30px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
}

.profile-delete-otp-modal,
.profile-delete-final-modal {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(22, 20, 91, 0.18);
  overflow: hidden;
}

.profile-delete-otp-modal__body {
  padding: 24px 16px 22px;
  text-align: center;
}

.profile-delete-otp-modal__title {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.profile-delete-otp-modal__copy {
  margin: 14px 12px 0;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.profile-delete-otp-modal__field {
  margin-top: 18px;
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr 84px;
  align-items: center;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}

.profile-delete-otp-modal__input {
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  font-size: 21px;
  line-height: 40px;
  letter-spacing: 0;
  color: #333;
  background: transparent;
}

.profile-delete-otp-modal__send {
  min-height: 48px;
  border-left: 1px solid rgba(21, 20, 91, 0.2);
  color: #15369a;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  background: transparent;
}

.profile-delete-otp-modal__send.is-counting,
.profile-delete-otp-modal__send[disabled] {
  color: #999;
}

.profile-delete-otp-modal__actions,
.profile-delete-final-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid rgba(60, 60, 67, 0.3);
}

.profile-delete-otp-modal__action,
.profile-delete-final-modal__action {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #6132a5;
  background: transparent;
}

.profile-delete-otp-modal__action + .profile-delete-otp-modal__action,
.profile-delete-final-modal__action + .profile-delete-final-modal__action {
  border-left: 0.5px solid rgba(60, 60, 67, 0.3);
}

.profile-delete-otp-modal__action[disabled] {
  opacity: 0.46;
}

.profile-delete-final-modal__body {
  padding: 34px 24px 30px;
  text-align: center;
}

.profile-delete-final-modal__title {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.coupon-tabs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.coupon-tab {
  min-height: 48px;
  color: #666;
  font-size: 14px;
  line-height: 16px;
}

.coupon-tab + .coupon-tab {
  border-left: 1px solid #ececec;
}

.coupon-tab--active {
  background: #dee3eb;
  color: #00247d;
  font-weight: 500;
}

.coupon-list {
  padding: 12px 16px 24px;
  display: grid;
  gap: 16px;
}

.coupon-card {
  position: relative;
  min-height: 118px;
  padding: 12px 16px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.coupon-card__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 24px;
}

.coupon-card__ribbon img {
  display: block;
  width: 100%;
  height: 100%;
}

.coupon-card__ribbon span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
}

.coupon-card__header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-right: 68px;
}

.coupon-card__value {
  color: #f51217;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.coupon-card__title {
  color: #666;
  font-size: 16px;
  line-height: 18px;
}

.coupon-card__info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  min-height: 23px;
  padding: 0 8px 0 6px;
  border-radius: 3px;
  background: #f5f5f5;
  color: #666;
  font-size: 12px;
  line-height: 12px;
}

.coupon-card__info-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.coupon-card__info-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coupon-card__dash {
  display: block;
  width: calc(100% + 2px);
  height: 2px;
  margin: 14px -1px 0;
}

.coupon-card__expiry {
  margin: 11px 0 0;
  color: #999;
  font-size: 12px;
  line-height: 12px;
}

.coupon-empty {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: #999;
  font-size: 14px;
}

.profile-contact-card {
  margin: 22px 24px 0;
  padding: 20px 15px 18px;
  border-radius: 10px;
  border: 1px solid #d9e1ee;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 34%),
    #fff;
}

.profile-contact-card__intro {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 24px;
}

.profile-contact-block {
  margin-top: 18px;
}

.profile-contact-block__label {
  margin: 0 0 10px;
  color: #333;
  font-size: 15px;
  line-height: 16px;
}

.profile-contact-copy {
  width: 100%;
  min-height: 48px;
  padding: 0 10px 0 14px;
  border-radius: 24px;
  border: 1.5px solid #16369a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #16369a;
  background: #fff;
}

.profile-contact-copy__value {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
}

.profile-contact-copy__badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #16369a;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.profile-contact-copy__badge svg {
  width: 18px;
  height: 18px;
  display: block;
}

.profile-contact-form-section {
  margin-top: 14px;
}

.profile-contact-form-section__title {
  margin: 0 24px 10px;
  color: #333;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}

.profile-contact-form-card {
  margin: 0 24px;
  padding: 16px 15px 18px;
  border-radius: 10px;
  border: 1px solid #e5e8f0;
  background: #fff;
}

.profile-contact-textarea-wrap {
  height: 132px;
  border-radius: 4px;
  background: #f7f8fb;
  padding: 14px 14px 12px;
}

.profile-contact-textarea {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  resize: none;
  outline: none;
  font-size: 15px;
  line-height: 24px;
}

.profile-contact-textarea::placeholder {
  color: #bbbfc7;
}

.profile-contact-counter {
  margin: 8px 0 0;
  text-align: right;
  color: #a4a8b0;
  font-size: 12px;
  line-height: 12px;
}

.profile-contact-submit {
  width: 264px;
  margin: 16px auto 0;
}

.profile-contact-submit-note {
  margin: 12px 0 0;
  text-align: center;
  color: #999;
  font-size: 12px;
  line-height: 18px;
}

.profile-benefit-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 82px 24px 0;
}

.profile-benefit-empty__illustration {
  display: block;
  width: 164px;
  height: auto;
}

.profile-benefit-empty__copy {
  margin: 18px 0 0;
  color: #b4b4b4;
  font-size: 16px;
  line-height: 18px;
}

.repay-screen {
  background: #fff;
  color: var(--ink-strong);
}

.repay-scroll {
  background: #fff;
}

.repay-page {
  padding: 58px 0 90px;
  background: #fff;
}

.repay-header-block {
  padding: 6px 24px 0;
}

.repay-tagline {
  margin: 7px 0 0;
  color: #999;
  font-size: 12px;
  line-height: 12px;
}

.repay-safety-bar {
  margin-top: 16px;
  min-height: 32px;
  padding: 0 16px;
  background: #fff7df;
  display: flex;
  align-items: center;
  gap: 4px;
}

.repay-safety-bar__icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.repay-safety-bar__text {
  margin: 0;
  color: #ebbb0b;
  font-size: 14px;
  line-height: 16px;
}

.repay-panel {
  position: relative;
  margin: 16px 24px 0;
  border: 1px solid rgba(0, 36, 125, 0.1);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.repay-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 32px;
  background: linear-gradient(180deg, #e2e9f7 0%, #fff 100%);
}

.repay-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 16px);
  width: 32px;
  height: 32px;
  background: linear-gradient(136deg, rgba(244, 247, 252, 0.2) 4%, #f4f7fc 48%, rgba(255, 255, 255, 0) 100%);
  clip-path: polygon(0 0, 100% 0, 44% 100%, 0 100%);
}

.repay-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 32px;
}

.repay-tab {
  position: relative;
  color: #333;
  font-size: 14px;
  line-height: 14px;
}

.repay-tab--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: #00247d;
  transform: translateX(-50%);
}

.repay-panel__body {
  position: relative;
  z-index: 1;
}

.repay-panel__body--overdue {
  padding: 24px 16px 16px;
}

.repay-panel__body--multiple {
  padding: 22px 16px 16px;
}

.repay-overdue-card {
  position: relative;
  min-height: 278px;
}

.repay-overdue-card__hero {
  min-height: 96px;
  padding-right: 100px;
}

.repay-overdue-card__label,
.repay-list-card__label {
  margin: 0;
  color: #c8c8c8;
  font-size: 14px;
  line-height: 14px;
}

.repay-overdue-card__amount,
.repay-list-card__amount {
  margin: 10px 0 0;
  color: #333;
  font-size: 28px;
  line-height: 28px;
  font-weight: 500;
}

.repay-overdue-card__date-row {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 16px;
  position: relative;
  z-index: 3;
}

.repay-overdue-card__date {
  color: #ff1111;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
}

.repay-overdue-card__badge {
  position: relative;
  width: 73px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  z-index: 3;
}

.repay-overdue-card__badge img {
  display: block;
  width: 100%;
  height: 100%;
}

.repay-overdue-card__badge span {
  position: absolute;
  left: 6px;
  top: 2px;
  color: #fff;
  font-size: 11px;
  line-height: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.repay-overdue-card__mascot {
  position: absolute;
  right: 4px;
  top: -16px;
  width: 90px;
  height: auto;
  display: block;
  z-index: 1;
}

.repay-pay-btn {
  width: 252px;
  min-height: 48px;
  margin: 6px auto 0;
  display: flex;
  background: linear-gradient(90deg, #de0f16 0%, #00247d 100%);
  box-shadow: none;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.repay-overdue-card__toggle {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-size: 14px;
  line-height: 16px;
  width: 100%;
  text-align: left;
}

.repay-overdue-card__toggle-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.repay-overdue-card__toggle-icon {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 160ms ease;
}

.repay-overdue-card__toggle-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.repay-overdue-card__toggle-icon.is-open {
  transform: rotate(180deg);
}

.repay-fee-box,
.repay-list-card__meta {
  margin-top: 10px;
  padding: 12px 10px 10px 13px;
  border-radius: 3px;
  background: #f3f5f9;
  display: grid;
  gap: 10px;
}

.repay-fee-box.is-hidden {
  display: none;
}

.repay-fee-box div,
.repay-list-card__meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.repay-fee-box span,
.repay-list-card__meta span {
  color: #999;
  font-size: 14px;
  line-height: 14px;
}

.repay-fee-box strong,
.repay-list-card__meta strong {
  color: #333;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
}

.repay-list {
  display: grid;
  gap: 16px;
}

.repay-list-card__date {
  margin: 0 0 10px;
  color: #333;
  font-size: 14px;
  line-height: 14px;
}

.repay-list-card__body {
  border-radius: 10px;
  background: #f5f7fc;
  padding: 18px 14px 16px;
}

.repay-pay-btn--list {
  margin-top: 18px;
}

.repay-legal {
  margin: 26px 24px 0;
  text-align: center;
  color: #999;
  font-size: 12px;
  line-height: 14px;
}

.repay-legal button {
  color: inherit;
  text-decoration: underline;
}

.repay-qr-screen,
.repay-qr-screen .screen__content,
.repay-qr-scroll {
  background: #fff;
}

.repay-qr-page {
  min-height: 100%;
  padding: 40px 24px 28px;
  background: #fff;
}

.repay-qr-head {
  position: relative;
  min-height: 56px;
}

.repay-qr-header {
  min-height: 56px;
  align-items: center;
}

.repay-qr-header .profile-detail-header__title {
  line-height: 18px;
}

.repay-qr-warning {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  min-height: 80px;
  margin-top: 0;
  padding: 8px 16px;
  margin-left: -24px;
  margin-right: -24px;
  background: #fff7df;
}

.repay-qr-warning__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
}

.repay-qr-warning__text {
  margin: 0;
  color: #ebbb0b;
  font-size: 14px;
  line-height: 16px;
}

.repay-qr-card,
.repay-qr-apps {
  position: relative;
  margin-top: 16px;
  border: 1px solid rgba(0, 36, 125, 0.1);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.repay-qr-card::before,
.repay-qr-apps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  background: linear-gradient(180deg, #e2e9f7 0%, #fff 100%);
}

.repay-qr-card {
  min-height: 364px;
  padding: 18px 16px 16px;
}

.repay-qr-card__label,
.repay-qr-apps__title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.repay-qr-card__amount {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  text-align: center;
  color: #333;
  font-size: 32px;
  line-height: 32px;
  font-weight: 500;
}

.repay-qr-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 160px;
  height: 160px;
  margin: 18px auto 0;
}

.repay-qr-card__save {
  position: relative;
  z-index: 1;
  width: 252px;
  min-height: 48px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #de0f16 0%, #00247d 100%);
}

.repay-qr-card__save-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.repay-qr-card__save-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.repay-qr-card__expire {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  text-align: center;
  color: #ff1111;
  font-size: 14px;
  line-height: 16px;
}

.repay-qr-apps {
  min-height: 448px;
  padding: 18px 16px 18px;
}

.repay-qr-apps__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 264px;
  height: 344px;
  margin: 16px auto 0;
}

.repay-qr-note {
  margin-top: 16px;
  padding: 18px 16px 20px;
  border-radius: 10px;
  background: #f3f5f9;
}

.repay-qr-note p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 18px;
}

.repay-qr-helper-wrap {
  margin-top: 18px;
}

.home-screen {
  background: #fff;
  color: var(--ink-strong);
}

.status-bar--dark {
  color: #1d2238;
}

.home-scroll {
  background: #fff;
}

.home-page {
  padding: 58px 24px 88px;
}

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

.home-header__support {
  display: block;
  width: 117px;
  height: 32px;
  flex: 0 0 auto;
}

.home-header__support-img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-header__logo {
  width: 161px;
  height: 32px;
  margin-top: 6px;
  display: block;
  flex: 0 0 auto;
}

.home-brand-caption {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 12px;
  color: #999;
}

.home-loan-card {
  margin-top: 16px;
  padding: 0 14px 16px;
  border-radius: 12px;
  border: 1px solid #eceff5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.home-loan-card__hero {
  margin: 0 -14px;
  padding: 16px 16px 0;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  overflow: hidden;
  background: linear-gradient(90deg, #17145e 0%, #43175a 58%, #f07d22 100%);
}

.home-loan-card__copy {
  padding-top: 2px;
}

.home-loan-card__eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.home-loan-card__hero h2 {
  margin: 6px 0 0;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  font-weight: 500;
}

.home-loan-card__visual {
  position: relative;
  width: 117px;
  height: 110px;
  flex: 0 0 auto;
}

.home-loan-card__mascot {
  position: absolute;
  right: -3px;
  bottom: -60px;
  width: 117px;
  height: auto;
  display: block;
}

.home-loan-card__hello {
  position: absolute;
  left: 14px;
  top: 10px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  transform: rotate(-21deg);
}

.home-loan-card__heart {
  position: absolute;
  left: 6px;
  bottom: 13px;
  width: 15px;
  height: 15px;
  display: block;
}

.home-loan-card__spark {
  position: absolute;
  right: 8px;
  top: 10px;
  width: 10px;
  height: 10px;
}

.home-loan-card__spark::before,
.home-loan-card__spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #ffd84d;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.home-loan-card__spark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-loan-slider {
  margin-top: 13px;
}

.home-loan-slider__track {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: #eef0f5;
  overflow: visible;
}

.home-loan-slider__fill {
  position: absolute;
  inset: 0 10% 0 0;
  border-radius: inherit;
  background: #ffca1b;
}

.home-loan-slider__thumb {
  position: absolute;
  right: 10%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: #ffc825;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.home-loan-slider__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  line-height: 14px;
  color: #333;
}

.home-loan-meta {
  margin-top: 13px;
  padding: 10px 16px 11px;
  border-radius: 3px;
  background: #f3f5f9;
  display: grid;
  gap: 10px;
}

.home-loan-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 14px;
}

.home-loan-meta span {
  color: #333;
}

.home-loan-meta strong {
  color: #333;
  font-weight: 400;
}

.home-loan-card__action {
  width: 252px;
  margin: 18px auto 0;
  display: flex;
}

.home-loan-card__action--pending {
  justify-content: center;
  cursor: default;
  opacity: 1;
}

.home-calc-toggle {
  width: 100%;
  margin-top: 13px;
  padding-top: 14px;
  border-top: 1px solid #edf0f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-size: 14px;
  line-height: 16px;
}

.home-calc-toggle__right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-calc-toggle__chevron {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #333;
  transition: transform 160ms ease;
}

.home-calc-toggle__chevron::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.home-calc-toggle__chevron.is-open {
  transform: rotate(180deg);
}

.home-calc-box {
  margin-top: 12px;
  padding: 14px 12px 12px;
  border-radius: 3px;
  background: #f3f5f9;
  color: #333;
  font-size: 14px;
  line-height: 18px;
}

.home-calc-box p {
  margin: 0;
}

.home-why {
  margin-top: 28px;
}

.home-page--audit {
  padding-bottom: 132px;
}

.home-audit-card {
  margin-top: 16px;
  padding: 0 14px 18px;
  border-radius: 12px;
  border: 1px solid #eceff5;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.home-audit-card__hero {
  margin: 0 -14px;
  padding: 16px 16px 0;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, #17145e 0%, #43175a 58%, #f07d22 100%);
}

.home-audit-card__copy {
  padding-top: 2px;
}

.home-audit-card__eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.home-audit-card__copy h2 {
  margin: 6px 0 0;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  font-weight: 500;
}

.home-audit-card__mascot {
  width: 119px;
  height: 110px;
  flex: 0 0 auto;
  display: block;
}

.home-loan-slider--audit {
  margin-top: 20px;
}

.home-legal--audit {
  margin-top: 18px;
}

.home-why h3,
.home-steps h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.2;
  color: #333;
  font-weight: 500;
}

.home-why__title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #333;
}

.home-why__title-easy {
  color: #44d7b6;
}

.home-why__title-thai {
  color: #00247d;
}

.home-feature-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -24px;
  padding: 0 24px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
}

.home-feature-rail {
  display: flex;
  gap: 16px;
  width: max-content;
  margin-left: 0;
}

.home-feature-viewport::-webkit-scrollbar,
.home-feature-rail::-webkit-scrollbar {
  display: none;
}

.home-feature-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
}

.home-feature-card__visual {
  height: 150px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #f7f1ea;
}

.home-feature-card__visual::before,
.home-feature-card__visual::after {
  content: none;
}

.home-feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-feature-card--ease .home-feature-card__image {
  object-position: center center;
}

.home-feature-card--clear .home-feature-card__image {
  object-position: center center;
}

.home-feature-card--fast .home-feature-card__image {
  object-position: center center;
}

.home-feature-card__badge {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 2px solid #ffcd21;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(18, 31, 84, 0.08);
  font-size: 14px;
  line-height: 18px;
  color: #333;
}

.home-feature-card__badge--ease {
  left: 9px;
  top: 24px;
}

.home-feature-card__badge--clear {
  left: 30px;
  top: 24px;
}

.home-feature-card__badge--minutes {
  left: 57px;
  top: 22px;
}

.home-feature-card__badge--fast {
  left: 28px;
  top: 73px;
}

.home-feature-card__copy {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 18px;
  color: #333;
}

.home-steps {
  margin-top: 30px;
}

.home-steps__panel {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e7f2;
  background: #fff;
}

.home-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home-step + .home-step {
  margin-top: 11px;
}

.home-step__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: block;
}

.home-step__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.home-step p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  color: #333;
}

.home-legal {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #999;
}

.home-legal button {
  color: inherit;
  text-decoration: underline;
}

.home-bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid #e6ebf4;
  z-index: 4;
}

.home-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #999;
  font-size: 12px;
  line-height: 12px;
}

.home-bottom-nav__item--active {
  color: #00247d;
  background: #f3f5f9;
  box-shadow: inset 0 2px 0 #00247d;
}

.home-bottom-nav__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.home-bottom-nav__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-bottom-nav__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.new-home-screen {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
  background: #fff;
  color: #0f172a;
}

.new-home-screen .screen__content {
  background: #fff;
}

.new-home-screen .status-bar {
  z-index: 7;
}

.new-home-screen .home-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: block;
  height: 124px;
  background: #fff;
}

.new-home-screen .home-header__logo {
  position: absolute;
  top: 64px;
  left: 24px;
  display: block;
  width: 161px;
  height: 32px;
  margin: 0;
}

.new-home-screen .home-header__support {
  position: absolute;
  top: 52px;
  right: 16px;
  width: 117px;
  height: 32px;
}

.new-home-screen .home-header__support-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.new-home-screen .home-scroll {
  position: absolute;
  top: 124px;
  right: 0;
  bottom: 52px;
  left: 0;
  height: auto;
  background: #fff;
}

.new-home-page {
  min-height: 100%;
  padding: 16px 24px 0;
  background: #fff;
}

.new-home-screen .home-brand-caption {
  position: absolute;
  top: 106px;
  left: 24px;
  z-index: 6;
  height: 12px;
  margin: 0;
  color: #999;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
}

.new-home-loan-card {
  position: relative;
  width: 100%;
  height: 299px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #16145a;
}

.new-home-loan-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-home-loan-card__amount-title,
.new-home-loan-card__amount,
.new-home-loan-card__info,
.new-home-loan-card__action,
.new-home-loan-card__tip,
.new-home-loan-card__top-tip,
.new-home-loan-card__divider {
  position: absolute;
  z-index: 1;
}

.new-home-loan-card__top-tip {
  top: 16px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 16px;
  color: #c7beda;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.8;
  white-space: nowrap;
}

.new-home-loan-card__top-tip span {
  width: 14px;
  height: 14px;
  color: #fccc03;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.new-home-loan-card__top-tip strong {
  font-weight: 500;
}

.new-home-loan-card__divider {
  top: 38px;
  left: 24px;
  width: 264px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.new-home-loan-card__amount-title {
  top: 62px;
  left: 46px;
  right: 46px;
  height: 18px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.new-home-loan-card__amount {
  top: 88px;
  left: 30px;
  right: 30px;
  height: 48px;
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
}

.new-home-loan-card__info {
  top: 152px;
  left: 50%;
  right: auto;
  display: flex;
  gap: 103px;
  justify-content: center;
  transform: translateX(-50%);
}

.new-home-loan-card__info-item {
  width: 77px;
  text-align: center;
}

.new-home-loan-card__info-item--right {
  width: 74px;
  text-align: center;
}

.new-home-loan-card__info-item span,
.new-home-loan-card__info-item strong {
  display: block;
  font-weight: 400;
}

.new-home-loan-card__info-item span {
  height: 12px;
  color: #c7beda;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
}

.new-home-loan-card__info-item strong {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
}

.new-home-loan-card__action {
  top: 206px;
  left: 30px;
  right: 30px;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(216, 206, 239, 0.96) 100%);
  color: #00247d;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
}

.new-home-loan-card__tip {
  top: 266px;
  left: 50%;
  width: 232px;
  height: 15px;
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.new-home-loan-card__tip strong {
  color: #fccc03;
  font-weight: 400;
}

.new-home-repay-banner {
  display: block;
  width: 100%;
  height: 64px;
  margin-top: 16px;
  border-radius: 10px;
  object-fit: cover;
}

.new-home-page-indicator {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 3px;
  margin: 4px auto 0;
}

.new-home-page-indicator span {
  height: 3px;
  border-radius: 1.5px;
  background: #e5e9f2;
}

.new-home-page-indicator span:first-child {
  width: 24px;
}

.new-home-page-indicator span:last-child {
  width: 10px;
}

.new-home-feature-section {
  margin-top: 24px;
}

.new-home-feature-section h3,
.new-home-link-section h3 {
  height: 18px;
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.new-home-feature-section > p {
  height: 16px;
  margin: 2px 0 0;
  color: #475569;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.new-home-feature-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.new-home-feature-item {
  display: flex;
  height: 78px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e5e9f2;
  border-radius: 8px;
  background: #fff;
}

.new-home-feature-item__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
}

.new-home-feature-item__content {
  min-width: 0;
}

.new-home-feature-item__content h4 {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.new-home-feature-item__content p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 16px;
}

.new-home-link-section {
  margin-top: 24px;
}

.new-home-link-row {
  display: grid;
  grid-template-columns: 16px auto minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: center;
  width: 100%;
  height: 18px;
  margin-top: 18px;
  text-align: left;
}

.new-home-link-row + .new-home-link-row {
  margin-top: 16px;
}

.new-home-link-row__icon,
.new-home-link-row__arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.new-home-link-row__title {
  color: #1a233b;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
}

.new-home-link-row__detail {
  min-width: 0;
  overflow: hidden;
  color: #6b7280;
  font-size: 12px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-home-policy {
  height: 92px;
  margin: 24px -24px 0;
  padding: 10px 20px 0;
  color: #9ca3af;
}

.new-home-policy p {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
}

.new-home-policy button {
  color: #00247d;
  text-decoration: underline;
}

.new-home-policy__copyright {
  margin-top: 6px !important;
  color: #808080;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px !important;
  line-height: 20px !important;
  text-align: center;
}

.home-bottom-nav {
  height: 83px;
  border-top-color: #edf0f5;
}

.home-bottom-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 134px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.92);
}

.home-bottom-nav__item {
  justify-content: flex-start;
  gap: 0;
  padding-top: 3px;
  color: #111827;
  font-size: 12px;
  line-height: 14px;
}

.home-bottom-nav__item--active {
  background: transparent;
  box-shadow: none;
  color: #111827;
}

.home-bottom-nav__icon {
  width: 32px;
  height: 32px;
}

.home-bottom-nav__icon img {
  object-fit: contain;
}

.new-home-screen .home-bottom-nav {
  height: 52px;
  border-top-color: #e6ebf4;
  background: #fff;
}

.new-home-screen .home-bottom-nav::after {
  content: none;
}

.new-home-screen .home-bottom-nav__item {
  justify-content: center;
  gap: 2px;
  padding-top: 0;
  color: #999;
  font-size: 12px;
  line-height: 12px;
}

.new-home-screen .home-bottom-nav__item--active {
  color: #00247d;
  background: #f3f5f9;
  box-shadow: inset 0 2px 0 #00247d;
}

.new-home-screen .home-bottom-nav__icon {
  width: 24px;
  height: 24px;
}

.portal-info-screen {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
  background: #fff;
  color: #111827;
}

.portal-info-screen .screen__content {
  background: #fff;
}

.portal-info-screen .status-bar {
  z-index: 8;
}

.portal-info-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 96px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.portal-info-header__back {
  position: absolute;
  top: 56px;
  left: 16px;
  width: 24px;
  height: 24px;
}

.portal-info-header__back img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portal-info-header h1 {
  position: absolute;
  top: 56px;
  left: 48px;
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.portal-info-header__support {
  position: absolute;
  display: block;
  top: 52px;
  right: 16px;
  width: 117px;
  height: 32px;
}

.portal-info-header__support-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portal-info-scroll {
  position: absolute;
  top: 96px;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto;
  background: #fff;
}

.portal-about-page {
  min-height: 944px;
  padding: 16px 20px 28px;
  background: #fff;
}

.portal-about-hero {
  width: 316px;
  height: 189px;
  margin: 0 auto;
  text-align: center;
}

.portal-about-hero__logo {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto;
}

.portal-about-hero h2 {
  margin: 16px 0 0;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.portal-about-hero p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 18px;
  white-space: pre-line;
}

.portal-about-product,
.portal-about-info-card {
  position: relative;
  width: 320px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  background: #f8fafc;
}

.portal-about-product {
  height: 164px;
  margin-top: 17px;
}

.portal-about-product__title,
.portal-about-info-card__title {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-about-product__title img,
.portal-about-info-card__title img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.portal-about-product__title h3,
.portal-about-info-card__title h3 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.portal-about-product__row {
  position: absolute;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
}

.portal-about-product__row:nth-child(2) {
  top: 56px;
}

.portal-about-product__row:nth-child(3) {
  top: 92px;
}

.portal-about-product__row:nth-child(4) {
  top: 128px;
}

.portal-about-product__row span {
  color: #64748b;
}

.portal-about-product__row strong {
  color: #1e293b;
  font-weight: 700;
}

.portal-about-info-card {
  height: 132px;
  margin-top: 16px;
}

.portal-about-info-card p {
  position: absolute;
  top: 56px;
  left: 16px;
  width: 293px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 20px;
  white-space: pre-line;
}

.portal-manual-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 320px;
  min-height: 1120px;
  padding: 24px 20px 32px;
  background: #fff;
}

.portal-manual-section {
  width: 320px;
}

.portal-manual-section-title {
  display: flex;
  align-items: center;
  height: 27px;
}

.portal-manual-section-title span {
  display: block;
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background: #00247d;
}

.portal-manual-section-title h2 {
  margin: 0 0 0 8px;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.portal-manual-prepare-card {
  position: relative;
  height: 166px;
  margin-top: 10px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  background: #f8fafc;
}

.portal-manual-prepare__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 16px 0;
}

.portal-manual-prepare__item {
  width: 128px;
  height: 80px;
  text-align: center;
}

.portal-manual-prepare__item:nth-child(2) {
  justify-self: end;
}

.portal-manual-prepare__item img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
}

.portal-manual-prepare__item h3 {
  margin: 8px 0 0;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.portal-manual-prepare__item p {
  margin: 2px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 16px;
}

.portal-manual-prepare__divider {
  position: absolute;
  top: 16px;
  left: 159px;
  width: 1px;
  height: 71px;
  background: #e5e7eb;
}

.portal-manual-prepare__confirm {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
}

.portal-manual-prepare__confirm-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #00247d;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
}

.portal-manual-prepare__confirm-item + .portal-manual-prepare__confirm-item {
  padding-left: 8px;
  border-left: 1px solid #00247d;
}

.portal-manual-prepare__confirm-item img {
  width: 12px;
  height: 12px;
}

.portal-manual-tip-list,
.portal-manual-step-list,
.portal-manual-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 7px;
}

.portal-manual-tip-card {
  position: relative;
  width: 320px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  background: #f8fafc;
}

.portal-manual-tip-card--1 {
  height: 70px;
}

.portal-manual-tip-card--2 {
  height: 88px;
}

.portal-manual-tip-card__icon {
  position: absolute;
  left: 10px;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.portal-manual-tip-card--1 .portal-manual-tip-card__icon {
  top: 16px;
}

.portal-manual-tip-card--2 .portal-manual-tip-card__icon {
  top: 24px;
}

.portal-manual-tip-card div {
  position: absolute;
  top: 10px;
  left: 62px;
  right: 10px;
}

.portal-manual-tip-card--1 div {
  left: 64px;
}

.portal-manual-tip-card h3 {
  margin: 0;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.portal-manual-tip-card p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 16px;
}

.portal-manual-step-row {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  background: #f8fafc;
}

.portal-manual-step-row--final {
  border-color: #1cbfa2;
  background: #edfffb;
}

.portal-manual-step-row__badge {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border-radius: 50%;
  background: #00247d;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 24px;
}

.portal-manual-step-row--final .portal-manual-step-row__badge {
  background: #44d7b6;
}

.portal-manual-step-row strong {
  margin-left: 10px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.portal-manual-step-row--final strong {
  color: #44d7b6;
}

.portal-manual-step-row img {
  position: absolute;
  top: 11px;
  right: 10px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.portal-manual-faq-row {
  position: relative;
  display: block;
  width: 320px;
  height: 52px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  background: #f8fafc;
  text-align: left;
  transition: height 0.2s ease;
}

.portal-manual-faq-row.is-expanded {
  height: 112px;
}

.portal-manual-faq-row__head {
  position: absolute;
  top: 14px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 24px;
}

.portal-manual-faq-row__icon {
  width: 24px;
  height: 24px;
}

.portal-manual-faq-row strong {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-manual-faq-row__arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transform: rotate(0);
  transition: transform 0.2s ease;
}

.portal-manual-faq-row.is-expanded .portal-manual-faq-row__arrow {
  transform: rotate(90deg);
}

.portal-manual-faq-row__divider {
  position: absolute;
  top: 50px;
  left: 44px;
  right: 16px;
  height: 1px;
  background: #e5e7eb;
  opacity: 0;
}

.portal-manual-faq-row__answer {
  position: absolute;
  top: 61px;
  left: 44px;
  right: 30px;
  color: #65737c;
  font-size: 12px;
  line-height: 16px;
  opacity: 0;
}

.portal-manual-faq-row.is-expanded .portal-manual-faq-row__divider,
.portal-manual-faq-row.is-expanded .portal-manual-faq-row__answer {
  opacity: 1;
}

.error-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
  color: #ff1111;
}

.error-copy svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-card {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink-body);
  padding: 18px 16px 20px;
  box-shadow: 0 24px 50px rgba(14, 24, 71, 0.28);
}

.modal-card.modal-card--wide {
  max-width: 314px;
  padding: 24px 14px 18px;
}

.modal-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
}

.modal-title {
  margin: 0 0 10px;
  text-align: center;
  color: var(--ink-strong);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.modal-text {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}

.modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.modal-overlay--login-agreement {
  display: block;
  padding: 0;
  backdrop-filter: blur(5.5px);
  background: rgba(0, 0, 0, 0.4);
}

.login-agreement-dialog {
  position: absolute;
  left: 30px;
  top: 211px;
  width: 300px;
  height: 304px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(14, 24, 71, 0.28);
}

.login-agreement-dialog__icon {
  position: absolute;
  left: 126px;
  top: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #00247d;
  color: #00247d;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.login-agreement-dialog__title {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 80px;
  margin: 0;
  color: #333;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.login-agreement-dialog__copy {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 112px;
  margin: 0;
  color: #333;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
}

.login-agreement-dialog__accept,
.login-agreement-dialog__cancel {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 48px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.login-agreement-dialog__accept {
  top: 169px;
  background: linear-gradient(90deg, #de0f16 0%, #00247d 100%);
  color: #fff;
}

.login-agreement-dialog__cancel {
  top: 233px;
  border: 1px solid #00247d;
  color: #00247d;
  background: #fff;
}

.modal-overlay--otp-voice,
.modal-overlay--otp-help {
  display: block;
  padding: 0;
  backdrop-filter: blur(5.5px);
  background: rgba(0, 0, 0, 0.4);
}

.otp-voice-dialog,
.otp-help-dialog {
  position: absolute;
  left: 30px;
  width: 300px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  overflow: hidden;
}

.otp-voice-dialog {
  top: 238px;
  height: 304px;
}

.otp-voice-dialog__icon {
  position: absolute;
  top: 16px;
  left: 126px;
  width: 48px;
  height: 48px;
  display: block;
}

.otp-voice-dialog__copy {
  position: absolute;
  top: 88px;
  left: 16px;
  right: 16px;
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.otp-dialog-primary,
.otp-dialog-secondary,
.otp-help-dialog__button {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 48px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.otp-dialog-primary,
.otp-help-dialog__button {
  background: linear-gradient(90deg, #de0f16 0%, #00247d 100%);
  color: #fff;
}

.otp-dialog-primary {
  top: 168px;
}

.otp-dialog-secondary {
  top: 232px;
  border: 1px solid #00247d;
  background: #fff;
  color: #00247d;
}

.otp-help-dialog {
  top: 181px;
  height: 418px;
}

.otp-help-dialog__title {
  position: absolute;
  top: 28px;
  left: 16px;
  right: 16px;
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.otp-help-dialog__list {
  position: absolute;
  top: 56px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 10px;
}

.otp-help-dialog__item {
  margin: 0;
  min-height: 74px;
  padding: 10px 8px;
  border-radius: 4px;
  background: #f5f5f5;
  text-align: center;
}

.otp-help-dialog__item:first-child {
  min-height: 92px;
}

.otp-help-dialog__item:nth-child(3) {
  min-height: 92px;
}

.otp-help-dialog__item h4 {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.otp-help-dialog__item p {
  margin: 8px 0 0;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.otp-help-dialog__button {
  top: 346px;
}

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

.faq-item {
  border-radius: 4px;
  background: #f5f5f5;
  padding: 10px 14px;
}

.faq-item h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  color: #333;
}

.faq-item p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: #666;
}

.modal-overlay--support {
  display: block;
  padding: 0;
}

.contact-sheet {
  position: absolute;
  top: 273px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 238px;
}

.contact-sheet__bg,
.contact-sheet__bubble {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  display: block;
}

.contact-sheet__bg {
  inset: 0;
  width: 300px;
  height: 238px;
}

.contact-sheet__bubble {
  left: -14px;
  bottom: -50px;
  width: 80px;
  height: 76px;
  object-position: left bottom;
}

.contact-card {
  position: relative;
  z-index: 1;
  height: 238px;
  background: transparent;
}

.contact-list {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 252px;
  display: grid;
  gap: 16px;
}

.contact-row {
  position: relative;
  width: 252px;
  height: 48px;
  padding: 0 48px 0 18px;
  border: 1px solid var(--brand-blue);
  border-radius: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
}

.contact-row__text {
  display: block;
  width: 100%;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.contact-row__icon {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: block;
}

.pre-apply-screen,
.pre-apply-screen .screen__content {
  background: #ffffff;
}

.pre-apply-scroll {
  padding-bottom: 244px;
  background: #ffffff;
}

.pre-apply-page {
  padding: 56px 0 0;
  min-height: 100%;
  background: #ffffff;
}

.pre-apply-page .home-header {
  padding: 0 24px 0;
}

.pre-apply-page__caption {
  margin: 5px 24px 0;
  font-size: 12px;
  line-height: 12px;
  color: #999999;
}

.pre-apply-risk-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  margin-top: 8px;
  padding: 0 16px;
  background: #fff9e9;
}

.pre-apply-risk-bar__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.pre-apply-risk-bar__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-risk-bar__text {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: #ebbb0b;
}

.pre-apply-fake-refuse {
  position: relative;
  margin-top: 2px;
  padding: 26px 24px 18px;
  background: #0d4a82;
  overflow: hidden;
}

.pre-apply-fake-refuse::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(13, 74, 130, 0) 0%, rgba(13, 74, 130, 0.1) 38%, rgba(255, 255, 255, 0.7) 78%, #ffffff 100%);
  pointer-events: none;
}

.pre-apply-fake-refuse__title {
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
}

.pre-apply-fake-refuse__copy {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 31px;
  font-weight: 600;
  color: #ffffff;
}

.pre-apply-fake-refuse__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 22px 18px 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pre-apply-fake-refuse__card-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #0d4a82;
}

.pre-apply-fake-refuse__card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-fake-refuse__card-copy {
  margin: 0;
  font-size: 15px;
  line-height: 27px;
  font-weight: 600;
  color: #6d6d6d;
}

.pre-apply-countdown-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  margin: 10px 24px 0;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e2e9f7 0%, #ffffff 100%);
}

.pre-apply-countdown-card__copy {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #333333;
}

.pre-apply-countdown-card__timer {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #333333;
}

.pre-apply-main-card {
  margin: 0 24px;
  padding: 0 16px 18px;
  border: 1px solid #e8edf5;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(9, 21, 52, 0.05);
}

.pre-apply-amount-card {
  width: 100%;
  margin-top: 0;
  padding: 24px 20px 19px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #001f7e 0%, #4a0a75 58%, #ef5b14 100%);
  color: #ffffff;
  text-align: center;
}

.pre-apply-amount-card__label {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
}

.pre-apply-amount-card__hint {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.pre-apply-amount-card__value-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
}

.pre-apply-amount-card__value {
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.pre-apply-amount-card__chevron {
  width: 14px;
  height: 8px;
  flex: 0 0 auto;
}

.pre-apply-amount-card__chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-amount-card__footer {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 12px;
  color: #ffffff;
}

.pre-apply-term-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}

.pre-apply-term-head strong {
  font-size: 16px;
  font-weight: 400;
}

.pre-apply-period-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf0f5;
}

.pre-apply-period-tab {
  height: 32px;
  border-radius: 4px;
  border: 1px solid #00247d;
  background: #ffffff;
  color: #00247d;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}

.pre-apply-period-tab--active {
  background: #00247d;
  color: #ffffff;
}

.pre-apply-repayment-card {
  padding-top: 16px;
}

.pre-apply-repay-group--spaced {
  margin-top: 20px;
}

.pre-apply-repay-group__title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: #000000;
}

.pre-apply-repay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pre-apply-repay-row + .pre-apply-repay-row {
  margin-top: 10px;
}

.pre-apply-repay-row__label {
  font-size: 14px;
  line-height: 16px;
  color: #666666;
}

.pre-apply-repay-row__value-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.pre-apply-repay-row__value {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: #333333;
}

.pre-apply-repay-row__value--date {
  padding-right: 18px;
}

.pre-apply-repay-row__icon {
  width: 12px;
  height: 12px;
  color: #c3cad6;
}

.pre-apply-repay-row__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-repay-tip {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: #00247d;
}

.pre-apply-bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid #edf0f5;
  background: transparent;
}

.pre-apply-bank-row__label {
  font-size: 14px;
  line-height: 16px;
  color: #666666;
}

.pre-apply-bank-row__value-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pre-apply-bank-row__value {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #00247d;
}

.pre-apply-bank-row__icon {
  width: 12px;
  height: 12px;
  color: #c3cad6;
}

.pre-apply-bank-row__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-bank-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: #999999;
}

.pre-apply-bank-list-screen {
  background: #f5f5f5;
}

.pre-apply-bank-list-scroll {
  background: #f5f5f5;
}

.pre-apply-bank-list-page {
  min-height: 100%;
  padding: 60px 16px 120px;
  background: #f5f5f5;
}

.pre-apply-bank-list-page__title {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #333333;
}

.pre-apply-bank-list {
  display: grid;
  gap: 8px;
}

.pre-apply-bank-card {
  width: 100%;
  min-height: 108px;
  padding: 17px 16px 15px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 42, 88, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.pre-apply-bank-card.is-disabled {
  opacity: 0.38;
}

.pre-apply-bank-card__head,
.pre-apply-bank-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pre-apply-bank-card__bank {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #333333;
}

.pre-apply-bank-card__tag {
  flex: 0 0 auto;
  min-width: 48px;
  min-height: 20px;
  padding: 0 6px;
  border: 1px solid currentColor;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}

.pre-apply-bank-card__tag--current {
  color: #4f79c8;
}

.pre-apply-bank-card__tag--credit {
  color: #ff7a1a;
}

.pre-apply-bank-card__tag--disabled {
  color: #999999;
}

.pre-apply-bank-card__number {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.2px;
}

.pre-apply-bank-card__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #adadad;
  background: #ffffff;
  flex: 0 0 auto;
}

.pre-apply-bank-card.is-selected .pre-apply-bank-card__radio {
  border-color: #00247d;
  box-shadow: inset 0 0 0 4px #ffffff, inset 0 0 0 999px #00247d;
}

.pre-apply-bank-add {
  width: 100%;
  min-height: 68px;
  margin-top: 8px;
  border-radius: 4px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #333333;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.pre-apply-bank-add__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00247d;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.pre-apply-privilege-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 13px 24px 0;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e8edf5;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(9, 21, 52, 0.04);
}

.pre-apply-privilege-card__check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
}

.pre-apply-privilege-card__check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-privilege-card__content {
  min-width: 0;
  flex: 1 1 auto;
}

.pre-apply-privilege-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pre-apply-privilege-card__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.pre-apply-privilege-card__title-wrap strong,
.pre-apply-privilege-card__price {
  font-size: 14px;
  line-height: 16px;
  color: #333333;
}

.pre-apply-privilege-card__question {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
}

.pre-apply-privilege-card__question svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-privilege-card__link {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 16px;
  color: #999999;
  text-decoration: underline;
  text-align: left;
}

.pre-apply-privilege-card__hint {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: #00247d;
}

.pre-apply-legal {
  margin: 13px 24px 0;
  font-size: 12px;
  line-height: 14px;
  color: #999999;
  text-align: center;
}

.pre-apply-legal button,
.pre-apply-agreement__link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
}

.pre-apply-helper-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding-bottom: 12px;
}

.pre-apply-helper-wrap .profile-detail-helper--bottom {
  position: relative;
  transform: none;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
}

.pre-apply-sticky {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 83px;
  z-index: 6;
  padding: 10px 16px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 244, 244, 0.96) 24%, #f4f4f4 100%);
}

.pre-apply-agreement {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.pre-apply-agreement__check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.pre-apply-agreement__check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-apply-agreement__copy {
  font-size: 12px;
  line-height: 18px;
  color: #666666;
}

.pre-apply-confirm {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border-radius: 24px;
  font-size: 16px;
  line-height: 16px;
}

.modal-overlay--pre-apply-amount {
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5.4px);
}

.pre-apply-amount-sheet {
  width: 100%;
  border-radius: 16px 16px 0 0;
  background: #ffffff;
  overflow: hidden;
}

.pre-apply-amount-sheet__header {
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #ebedf2;
  display: flex;
  align-items: center;
}

.pre-apply-amount-sheet__header h3 {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #333333;
}

.pre-apply-amount-sheet__list {
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: #ffffff;
}

.pre-apply-amount-sheet__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: 100%;
  padding: 0 40px;
  border: 0;
  background: #ffffff;
  color: #333333;
  text-align: center;
}

.pre-apply-amount-sheet__row.is-selected {
  background: #f5f5f5;
}

.pre-apply-amount-sheet__value {
  font-family: "Roboto", "Kanit", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
}

.pre-apply-amount-sheet__row--coupon {
  justify-content: center;
  gap: 8px;
}

.pre-apply-amount-sheet__coupon-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pre-apply-amount-sheet__coupon-old {
  font-family: "Roboto", "Kanit", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: #333333;
  text-decoration: line-through;
}

.pre-apply-amount-sheet__coupon-value {
  font-family: "Roboto", "Kanit", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #00247d;
}

.pre-apply-amount-sheet__coupon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 24px;
  padding: 0 12px;
  border-radius: 12px;
  background: #fa3c33;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
}

.pre-apply-amount-sheet__check {
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  color: #00247d;
}

.pre-apply-amount-sheet__check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.modal-overlay--pre-apply-popup {
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
}

.modal-overlay--pre-apply-alert {
  background: rgba(0, 0, 0, 0.36);
}

.pre-apply-alert-dialog {
  width: 100%;
  max-width: 286px;
  padding: 22px 20px 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(14, 24, 71, 0.24);
}

.pre-apply-alert-dialog__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #333333;
}

.pre-apply-alert-dialog__description {
  margin: 14px 0 0;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  color: #555555;
}

.pre-apply-alert-dialog__cta {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid #ebedf2;
  background: transparent;
  color: #00247d;
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
}

.pre-apply-popup {
  width: 100%;
  max-width: 304px;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14, 24, 71, 0.34);
}

.pre-apply-popup__hero {
  width: 100%;
}

.pre-apply-popup__hero img {
  width: 100%;
  display: block;
}

.pre-apply-popup__hero--image-only {
  background: #ffffff;
}

.pre-apply-popup__body {
  padding: 0 20px 18px;
}

.pre-apply-popup__body--guide {
  padding-top: 20px;
}

.pre-apply-popup__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #0f438f;
}

.pre-apply-popup__description {
  margin: 18px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #333333;
}

.pre-apply-popup__description--guide {
  margin-top: 14px;
  color: #0f438f;
}

.pre-apply-popup__cta {
  width: 100%;
  height: 56px;
  margin-top: 20px;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffd54f 0%, #ffbc18 54%, #ff8d00 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5), 0 4px 0 #f15212;
  color: #ffffff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}

.pre-apply-popup__link {
  display: block;
  margin: 14px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b0b0b0;
  font-size: 14px;
  line-height: 18px;
  text-decoration: underline;
}

.pre-apply-confirm-dialog {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-top: 40px;
  padding: 56px 24px 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(14, 24, 71, 0.34);
}

.pre-apply-confirm-dialog__icon {
  position: absolute;
  top: -36px;
  left: 50%;
  width: 92px;
  height: 92px;
  transform: translateX(-50%);
  display: block;
}

.pre-apply-confirm-dialog__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #333333;
}

.pre-apply-confirm-dialog__description {
  margin: 4px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #333333;
}

.pre-apply-confirm-dialog__cta {
  width: 100%;
  height: 48px;
  margin-top: 24px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, #ef1c24 0%, #002a9c 100%);
  color: #ffffff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.modal-overlay--home-audit-review {
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
}

.home-audit-review-dialog {
  width: 100%;
  max-width: 300px;
  padding: 24px 24px 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(14, 24, 71, 0.28);
}

.home-audit-review-dialog__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #333333;
}

.home-audit-review-dialog__illustration {
  width: 252px;
  height: 116px;
  margin-top: 16px;
  border-radius: 3px;
  overflow: hidden;
  background: #f3f5f9;
}

.home-audit-review-dialog__illustration img {
  display: block;
  width: 252px;
  height: 116px;
  object-fit: cover;
}

.home-audit-review-dialog__primary,
.home-audit-review-dialog__secondary {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.home-audit-review-dialog__primary {
  margin-top: 24px;
  border: 0;
  background: linear-gradient(90deg, #ef1c24 0%, #002a9c 100%);
  color: #ffffff;
}

.home-audit-review-dialog__secondary {
  margin-top: 16px;
  border: 1.5px solid #1d4fa5;
  background: #ffffff;
  color: #1d4fa5;
}

.pre-apply-reviewing-screen,
.pre-apply-reviewing-screen .screen__content {
  background: #ffffff;
}

.pre-apply-reviewing-scroll {
  background: #ffffff;
}

.pre-apply-reviewing-page {
  min-height: 100%;
  padding: 18px 24px 28px;
  background: #ffffff;
}

.pre-apply-reviewing-page__hero {
  display: block;
  width: 236px;
  margin: 52px auto 0;
}

.pre-apply-reviewing-page__title {
  margin: 22px 0 0;
  text-align: center;
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
  color: #444444;
}

.pre-apply-reviewing-page__copy {
  margin: 8px auto 0;
  max-width: 312px;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  color: #9a9a9a;
}

.pre-apply-reviewing-page__cta {
  width: 100%;
  height: 48px;
  margin-top: 28px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, #ef1c24 0%, #002a9c 100%);
  color: #ffffff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.pre-apply-reviewing-page__legal {
  margin: 30px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: #999999;
}

.pre-apply-reviewing-page__legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
}

.pre-apply-reviewing-page__helper {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.pre-apply-reviewing-page__helper .profile-detail-helper--bottom {
  position: relative;
  transform: none;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
}

.face-auth-screen,
.face-auth-screen .screen__content {
  background: #ffffff;
}

.face-auth-scroll {
  background: #ffffff;
}

.face-auth-page {
  min-height: 100%;
  padding: 104px 16px 28px;
  background: #ffffff;
}

.face-auth-page--success {
  padding-top: 104px;
}

.face-auth-page__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #2f2f2f;
}

.face-auth-scanner {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.face-auth-scanner__ring {
  position: relative;
  width: 202px;
  height: 202px;
  border-radius: 50%;
  background: rgba(58, 64, 75, 0.76);
  border: 5px solid #405587;
  box-shadow: inset 0 -4px 0 #1db7c2;
}

.face-auth-scanner__frame {
  position: absolute;
  inset: 58px 47px 51px;
}

.face-auth-scanner__frame span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #18389d;
  border-style: solid;
}

.face-auth-scanner__frame span:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.face-auth-scanner__frame span:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.face-auth-scanner__frame span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.face-auth-scanner__frame span:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.face-auth-scanner__count {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
}

.face-auth-page__hint {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #18389d;
}

.face-auth-page__divider {
  height: 1px;
  margin: 24px 0 0;
  background: #e7e7e7;
}

.face-auth-page__guide-title {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #444444;
}

.face-auth-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.face-auth-guide-card__image {
  width: 100%;
  display: block;
}

.face-auth-guide-card__label {
  margin: 8px 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 15px;
  color: #666666;
}

.face-auth-page__legal {
  margin: 26px 8px 0;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: #999999;
}

.face-auth-page__legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
}

.face-auth-page__helper {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.face-auth-page__helper .profile-detail-helper--bottom {
  position: relative;
  transform: none;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
}

.face-auth-page__cta {
  width: 100%;
  height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, #ef1c24 0%, #002a9c 100%);
  color: #ffffff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.face-auth-page__success-hero {
  display: block;
  width: 220px;
  margin: 28px auto 0;
}

.toast {
  position: absolute;
  left: 50%;
  bottom: 308px;
  transform: translateX(-50%);
  z-index: 30;
  pointer-events: none;
  min-width: 210px;
  max-width: calc(100% - 48px);
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(17, 25, 94, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 18px 40px rgba(10, 18, 52, 0.34);
}

.link-reset {
  color: inherit;
  text-decoration: none;
}

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

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes launchFade {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes launchProgress {
  0% {
    transform: translateX(-65%);
  }

  100% {
    transform: translateX(185%);
  }
}

.phone:has(.figma-startup-screen) .phone-language-switch {
  display: none;
}

.phone:has(.figma-startup-screen) {
  border: 0;
  background: #11195e;
}

.phone:has(.figma-startup-screen)::before {
  display: none;
}

.figma-startup-screen {
  background: #11195e;
}

.figma-startup-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #11195e;
}

.figma-startup-frame__image {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: none;
  object-fit: cover;
}

.figma-guide-bg {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: none;
  object-fit: cover;
}

.figma-guide-slide {
  position: absolute;
  left: 40px;
  top: 149px;
  width: 280px;
  height: 280px;
}

.figma-guide-illustration {
  position: absolute;
  inset: 0;
  display: block;
  width: 280px;
  height: 280px;
  max-width: none;
  object-fit: contain;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  will-change: opacity, transform;
}

.figma-guide-illustration.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
}

.figma-guide-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 505px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.figma-guide-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Kanit", "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.figma-guide-copy p {
  margin: 0;
  color: #d3d3d3;
  font-family: "Kanit", "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.figma-guide-dots {
  position: absolute;
  left: 152px;
  top: 636px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 56px;
  height: 6px;
}

.figma-guide-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.figma-guide-dot.is-active {
  width: 24px;
  background: #fff;
}

.figma-guide-button {
  position: absolute;
  left: 24px;
  top: 658px;
  z-index: 2;
  width: 312px;
  height: 50px;
  border-radius: 100px;
  background: #44d7b6;
  color: #f8fafc;
  font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .prototype-shell {
    justify-content: center;
  }

  .flow-panel {
    display: none;
  }
}

@media (max-width: 480px) {
  .prototype-shell {
    padding: 0;
  }

  .phone {
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
    border-radius: 0;
    border: 0;
  }

  .phone::before {
    display: none;
  }
}
