:root {
  --ink: #080908;
  --muted: #747872;
  --line: rgba(8, 9, 8, 0.12);
  --paper: #fbfaf6;
  --porcelain: #f4f1e9;
  --green: #19f58b;
  --green-deep: #007b4d;
  --shadow: 0 34px 100px rgba(8, 9, 8, 0.13);
  --title-main-size: 6.8rem;
  --choice-size: 6.75rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.luxury-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(244, 241, 233, 0.36) 50%, rgba(255, 255, 255, 0.96)),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 46%, #f1eee4 100%);
}

.luxury-bg::before,
.luxury-bg::after {
  content: "";
  position: absolute;
  left: -38vw;
  width: 38vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.08), rgba(8, 9, 8, 0.62), transparent);
  box-shadow: 0 0 22px rgba(8, 9, 8, 0.16);
  transform: skewX(-18deg);
  animation: fastBlackLine 0.72s linear infinite;
}

.luxury-bg::before {
  top: 24%;
}

.luxury-bg::after {
  top: 62%;
  animation-delay: 0.48s;
}

.grain {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 9, 8, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 9, 8, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 76%);
}

.fine-line {
  position: absolute;
  left: -22%;
  width: 144%;
  height: 1px;
  opacity: 0;
  transform: skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.56), transparent);
}

.line-one {
  top: 16%;
  animation: fastSweep 0.88s ease-in-out infinite;
}

.line-two {
  top: 82%;
  animation: fastSweep 1.02s ease-in-out infinite 0.16s;
}

.luxury-stage {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 44px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) 0 46px;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: clamp(42px, 5.8vw, 78px);
  animation: stageReveal 520ms ease-out both;
}

.luxury-header {
  position: relative;
  text-align: center;
  min-height: clamp(258px, 35vw, 430px);
  display: grid;
  place-items: center;
}

.luxury-header::before,
.luxury-header::after {
  content: "";
  position: absolute;
  top: 52%;
  width: min(18vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.28));
}

.luxury-header::before {
  left: 0;
}

.luxury-header::after {
  right: 0;
  transform: scaleX(-1);
}

.brand-title {
  position: relative;
  margin: 0 auto;
  width: min(1080px, 100%);
  display: grid;
  justify-items: center;
}

.brand-title::before {
  content: "";
  width: min(520px, 64vw);
  height: 1px;
  margin-bottom: clamp(12px, 2.2vw, 28px);
  background: linear-gradient(90deg, transparent, rgba(25, 245, 139, 0.94), transparent);
  box-shadow: 0 0 20px rgba(25, 245, 139, 0.38);
}

.brand-title::after {
  content: "";
  width: min(260px, 42vw);
  height: 4px;
  margin-top: 22px;
  background: #080908;
  box-shadow:
    88px 0 0 rgba(8, 9, 8, 0.22),
    -88px 0 0 rgba(8, 9, 8, 0.22),
    0 0 24px rgba(25, 245, 139, 0.28);
}

.brand-title-main {
  position: relative;
  display: inline-block;
  padding: 0 18px 10px;
  color: #050605;
  font-family: "Microsoft YaHei", "PingFang SC", "Heiti SC", sans-serif;
  font-size: var(--title-main-size);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-shadow:
    0 1px 0 #ffffff,
    0 18px 54px rgba(8, 9, 8, 0.18);
}

.brand-title-main::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.95), rgba(25, 245, 139, 0.76), rgba(8, 9, 8, 0.95));
  transform-origin: left;
  animation: titleStrike 0.82s cubic-bezier(0.22, 0.74, 0.18, 1) infinite;
}

.brand-title-main::after {
  content: "";
  position: absolute;
  inset: 12% 0 auto;
  height: 18%;
  background: linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.07), transparent);
  transform: skewX(-18deg) translateX(-120%);
  animation: titleFlash 0.68s linear infinite;
}

.luxury-header p {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin: 0 auto;
  width: min(640px, 100%);
  color: var(--muted);
  font-size: clamp(15px, 1.65vw, 19px);
  line-height: 1.8;
  font-weight: 500;
}

.product-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 10vw, 154px);
  align-items: stretch;
  position: relative;
}

.product-selector::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 8, 0.18), rgba(25, 245, 139, 0.66), rgba(8, 9, 8, 0.18), transparent);
  box-shadow: 0 0 18px rgba(25, 245, 139, 0.22);
  opacity: 0.76;
}

.product-choice {
  position: relative;
  min-height: 348px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  box-shadow: 0 26px 90px rgba(8, 9, 8, 0.11);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: panelReveal 620ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.choice-light {
  animation-delay: 80ms;
}

.product-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.product-choice::after {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid currentColor;
  opacity: 0.2;
  transition: inset 0.28s ease, opacity 0.28s ease;
}

.product-choice > span {
  transform: translateY(2px);
  transition: transform 0.28s ease, text-shadow 0.28s ease;
}

.product-choice span::before,
.product-choice span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 64px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--green);
  box-shadow: 0 0 18px rgba(25, 245, 139, 0.42);
}

.product-choice span::before {
  top: -24px;
}

.product-choice span::after {
  bottom: -25px;
}

.choice-dark {
  color: #fff;
  border: 1px solid rgba(8, 9, 8, 0.92);
  background: #080908;
}

.choice-light {
  color: #070807;
  border: 1px solid rgba(8, 9, 8, 0.2);
  background: rgba(255, 255, 255, 0.92);
}

.choice-dark::before {
  background:
    linear-gradient(135deg, rgba(25, 245, 139, 0.18), transparent 26%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.07), transparent 30%),
    #080908;
}

.choice-light::before {
  background:
    linear-gradient(135deg, rgba(8, 9, 8, 0.05), transparent 32%),
    linear-gradient(315deg, rgba(25, 245, 139, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.9);
}

.product-choice span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: var(--choice-size);
  line-height: 0.92;
  font-weight: 600;
  color: currentColor;
  text-align: center;
  text-shadow: 0 24px 70px rgba(8, 9, 8, 0.22);
}

.choice-dark span {
  color: #f8f5eb;
}

.choice-light span {
  color: #080908;
}

.product-choice:hover {
  transform: translateY(-9px);
  box-shadow:
    0 44px 120px rgba(8, 9, 8, 0.18),
    0 0 38px rgba(25, 245, 139, 0.13);
}

.product-choice:hover::after {
  inset: 12px;
  opacity: 0.26;
}

.product-choice:hover > span {
  transform: translateY(-2px);
  text-shadow:
    0 24px 70px rgba(8, 9, 8, 0.24),
    0 0 16px rgba(25, 245, 139, 0.16);
}

.brand-strip {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 28px;
  align-items: center;
}

.brand-item {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: rgba(7, 8, 7, 0.78);
  font-weight: 900;
}

.brand-image img {
  max-width: 132px;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.16);
}

.brand-image img[src*="nio.svg"],
.brand-force-black img {
  filter: brightness(0) saturate(1) contrast(1.12);
}

.brand-lexus img {
  max-width: 138px;
  max-height: 76px;
  filter: grayscale(1) contrast(1.12);
}

.onvo-word {
  color: #111827;
  font-size: 2.45rem;
  font-weight: 900;
}

.onvo-word span {
  margin-left: 8px;
  font-size: 0.5em;
  color: rgba(17, 24, 39, 0.72);
  vertical-align: middle;
}

.site-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
}

.top-nav a,
.top-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-password-link {
  position: relative;
  overflow: hidden;
  border-color: rgba(8, 9, 8, 0.22) !important;
  background:
    linear-gradient(90deg, rgba(25, 245, 139, 0.14), transparent 38%),
    #080908 !important;
  color: #f8f5eb !important;
  box-shadow: 0 10px 26px rgba(8, 9, 8, 0.12);
}

.nav-password-link::before {
  content: "";
  position: absolute;
  left: -38%;
  top: 0;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 245, 139, 0.9), transparent);
  animation: fastBlackLine 0.72s linear infinite;
}

.nav-password-link:hover {
  border-color: rgba(25, 245, 139, 0.76) !important;
  box-shadow: 0 0 0 3px rgba(25, 245, 139, 0.12), 0 12px 32px rgba(8, 9, 8, 0.16);
}

.page-title {
  padding: 38px 0 22px;
}

.eyebrow {
  display: inline-block;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.page-title h1 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
}

.page-title p,
.info-table span,
.notice-list p,
.mini-card p,
.calculator-head h2,
.calc-field span,
.calc-total span {
  color: var(--muted);
}

.calculator-panel,
.info-panel,
.notice-section,
.mini-card {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(15, 23, 32, 0.08);
}

.calculator-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(8, 9, 8, 0.18);
  background:
    linear-gradient(135deg, rgba(8, 9, 8, 0.035), transparent 32%),
    linear-gradient(315deg, rgba(25, 245, 139, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.92);
}

.calculator-panel::before {
  content: "";
  position: absolute;
  left: -28%;
  top: 0;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.72), transparent);
  animation: fastBlackLine 0.92s linear infinite;
}

.quote-product {
  border-radius: 8px;
  box-shadow:
    0 24px 76px rgba(8, 9, 8, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.calculator-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.62fr);
  align-items: stretch;
  gap: 16px;
  margin-bottom: 0;
}

.calculator-head h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.1;
}

.calculator-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.quote-hero > div:first-child {
  padding: clamp(24px, 3.6vw, 38px);
}

.quote-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.quote-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(8, 9, 8, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(8, 9, 8, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.quote-price {
  min-height: 170px;
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: #080908;
  color: #fff;
}

.quote-price span {
  color: rgba(248, 245, 235, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.quote-price strong {
  color: #f8f5eb;
  font-size: clamp(38px, 5.8vw, 64px);
  line-height: 1;
}

.quote-price strong::before {
  content: "￥";
  margin-right: 3px;
  color: var(--green);
  font-size: 0.5em;
  vertical-align: 0.18em;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(8, 9, 8, 0.1);
}

.calc-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.calc-field span,
.calc-total span,
.quote-price span {
  font-size: 13px;
  font-weight: 800;
}

.calc-field input,
.calc-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(8, 9, 8, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: rgba(8, 9, 8, 0.48);
  box-shadow: 0 0 0 3px rgba(25, 245, 139, 0.16);
}

.calc-field input[readonly] {
  color: rgba(8, 9, 8, 0.72);
  background: rgba(244, 241, 233, 0.58);
}

.calc-output input[readonly] {
  min-height: 58px;
  color: #080908;
  background:
    linear-gradient(135deg, rgba(25, 245, 139, 0.14), transparent 34%),
    #f8f5eb;
  border-color: rgba(8, 9, 8, 0.22);
  font-size: 22px;
}

.calc-output input[readonly]::before {
  content: "￥";
}

.calc-field input.is-editable {
  color: var(--ink);
  background: #fff;
}

.money-field {
  position: relative;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 8, 0.84);
  background: #080908;
}

.money-field::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 245, 139, 0.88), transparent);
  box-shadow: 0 0 16px rgba(25, 245, 139, 0.34);
}

.money-field span {
  color: rgba(248, 245, 235, 0.68);
}

.money-field input,
.money-field input[readonly],
.money-field input.is-editable {
  min-height: 54px;
  border-color: rgba(248, 245, 235, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f8f5eb;
  font-size: 22px;
  box-shadow: none;
}

.money-field input::placeholder {
  color: rgba(248, 245, 235, 0.38);
}

.money-field input:focus {
  border-color: rgba(25, 245, 139, 0.72);
  box-shadow: 0 0 0 3px rgba(25, 245, 139, 0.16);
}

.calc-total {
  margin-top: 18px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(8, 9, 8, 0.86);
  background: #080908;
  color: #fff;
}

.calc-total strong {
  color: #f8f5eb;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.calc-total strong::before {
  content: "￥";
  margin-right: 2px;
  color: var(--green);
  font-size: 0.58em;
  vertical-align: 0.12em;
}

.info-panel h2,
.notice-section h2,
.mini-card h2 {
  margin-top: 0;
}

.info-table {
  display: grid;
  gap: 8px;
}

.info-table div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-table div:last-child {
  border-bottom: 0;
}

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

.notice-list {
  display: grid;
  gap: 10px;
}

.notice-list p {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--green-deep);
  border-radius: 8px;
  background: #f5f8fb;
}

@keyframes luxurySweep {
  0% { opacity: 0; transform: translateX(-18%); }
  18% { opacity: 1; }
  76% { opacity: 1; }
  100% { opacity: 0; transform: translateX(18%); }
}

@keyframes fastBlackLine {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }
  8% {
    opacity: 1;
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(176vw) skewX(-18deg);
  }
}

@keyframes fastSweep {
  0% {
    opacity: 0;
    transform: translateX(-14%) skewX(-16deg);
  }
  8% {
    opacity: 0.72;
  }
  56% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translateX(14%) skewX(-16deg);
  }
}

@keyframes titleStrike {
  0% {
    transform: scaleX(0);
    opacity: 0.2;
  }
  24% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.78;
  }
}

@keyframes titleFlash {
  0% {
    transform: skewX(-18deg) translateX(-130%);
    opacity: 0;
  }
  18% {
    opacity: 0.56;
  }
  100% {
    transform: skewX(-18deg) translateX(130%);
    opacity: 0;
  }
}

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

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  :root {
    --title-main-size: 5.2rem;
    --choice-size: 5.6rem;
  }
}

@media (max-width: 760px) {
  :root {
    --title-main-size: 3.05rem;
    --choice-size: 3.25rem;
  }

  .luxury-stage {
    width: min(100% - 24px, 520px);
    min-height: auto;
    padding: 42px 0 34px;
    gap: 34px;
  }

  .luxury-header::before,
  .luxury-header::after {
    display: none;
  }

  .brand-title {
    gap: 6px;
    margin-bottom: 18px;
  }

  .brand-title::before {
    margin-bottom: 10px;
  }

  .brand-title::after {
    margin-top: 12px;
  }

  .brand-title-main {
    max-width: 100%;
    padding: 0 10px 9px;
    line-height: 1.12;
    white-space: nowrap;
  }

  .luxury-header p {
    font-size: 16px;
  }

  .product-selector {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-selector::before {
    display: none;
  }

  .product-choice {
    min-height: 172px;
    padding: 24px;
  }

  .product-choice span {
    font-size: var(--choice-size);
  }

  .product-choice span::before {
    top: -18px;
  }

  .product-choice span::after {
    bottom: -19px;
  }

  .brand-strip {
    width: min(390px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .brand-item {
    min-height: 48px;
  }

  .brand-image img {
    max-width: 110px;
    max-height: 30px;
  }

  .brand-lexus img {
    max-width: 92px;
    max-height: 50px;
  }

  .onvo-word {
    font-size: 1.75rem;
  }

  .brand-force-black img[src*="firefly.svg"] {
    max-width: 106px;
  }

  .brand-force-black img[src*="aito-word.svg"] {
    max-width: 118px;
  }

  .site-shell {
    width: min(100% - 24px, 560px);
  }

  .calculator-panel {
    padding: 0;
  }

  .calculator-head {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .quote-hero > div:first-child {
    padding: 22px 18px 8px;
  }

  .quote-tags {
    margin-top: 14px;
  }

  .quote-price {
    min-height: 126px;
    padding: 18px;
  }

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

  .info-table div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 420px) {
  :root {
    --title-main-size: 2.35rem;
    --choice-size: 3rem;
  }
}

@media (max-width: 360px) {
  :root {
    --title-main-size: 2.1rem;
  }
}


/* customer quote card redesign start */
.quote-card {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 8, 0.14);
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: 0 26px 90px rgba(8, 9, 8, 0.14);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto -40%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.8), transparent);
  animation: fastBlackLine 0.78s linear infinite;
  z-index: 2;
}

.quote-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  min-height: 220px;
}

.quote-title-block {
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(8, 9, 8, 0.045), transparent 34%),
    linear-gradient(315deg, rgba(25, 245, 139, 0.11), transparent 36%),
    #fffefa;
}

.quote-title-block h2 {
  margin: 10px 0 12px;
  color: #080908;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
}

.quote-title-block p {
  margin: 0;
  color: rgba(8, 9, 8, 0.58);
  font-weight: 800;
}

.quote-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.quote-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(8, 9, 8, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(8, 9, 8, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.quote-total-block {
  position: relative;
  min-height: 220px;
  padding: clamp(26px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(25, 245, 139, 0.18), transparent 28%),
    #080908;
  color: #f8f5eb;
}

.quote-total-block span,
.quote-total-block small {
  color: rgba(248, 245, 235, 0.66);
  font-size: 13px;
  font-weight: 900;
}

.quote-total-block strong {
  color: #f8f5eb;
  font-size: clamp(48px, 6.4vw, 76px);
  line-height: 0.96;
}

.quote-total-block strong::before {
  content: "￥";
  margin-right: 4px;
  color: var(--green);
  font-size: 0.48em;
  vertical-align: 0.18em;
}

.quote-money-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #080908;
}

.quote-money-item {
  position: relative;
  min-height: 128px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(25, 245, 139, 0.1), transparent 34%),
    #101210;
}

.quote-money-item::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 245, 139, 0.9), transparent);
  box-shadow: 0 0 16px rgba(25, 245, 139, 0.32);
}

.quote-money-item::after {
  content: "￥";
  position: absolute;
  left: 16px;
  bottom: 18px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.quote-money-item span {
  color: rgba(248, 245, 235, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.quote-money-item input {
  width: 100%;
  min-height: 44px;
  padding: 0 0 0 22px;
  border: 0;
  background: transparent;
  color: #f8f5eb;
  font: inherit;
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 900;
  line-height: 1;
  outline: none;
}

.quote-money-item input::placeholder {
  color: rgba(248, 245, 235, 0.32);
  font-size: 15px;
}

.quote-money-item input::-webkit-outer-spin-button,
.quote-money-item input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.quote-money-item input[type="number"] {
  appearance: textfield;
}

.quote-money-item input[readonly] {
  color: #f8f5eb;
}

.quote-money-item input.is-editable {
  color: #f8f5eb;
}

.quote-config {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.6vw, 28px);
  background: #fffefa;
}

.quote-option {
  display: grid;
  gap: 8px;
}

.quote-option span {
  color: rgba(8, 9, 8, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.quote-option select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(8, 9, 8, 0.15);
  border-radius: 8px;
  background: #fff;
  color: #080908;
  font: inherit;
  font-weight: 900;
  outline: none;
}

.quote-option select:focus {
  border-color: rgba(8, 9, 8, 0.48);
  box-shadow: 0 0 0 3px rgba(25, 245, 139, 0.15);
}

@media (max-width: 920px) {
  .quote-card-header {
    grid-template-columns: 1fr;
  }

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

  .quote-money-item:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .quote-title-block,
  .quote-total-block {
    padding: 22px 18px;
  }

  .quote-total-block {
    min-height: 154px;
  }

  .quote-config {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .quote-money-grid {
    grid-template-columns: 1fr;
  }

  .quote-money-item:first-child {
    grid-column: auto;
  }
}
/* customer quote card redesign end */


/* compact mobile quote card start */
@media (max-width: 760px) {
  .quote-card {
    margin-bottom: 18px;
    box-shadow: 0 16px 48px rgba(8, 9, 8, 0.12);
  }

  .quote-card-header {
    min-height: 0;
  }

  .quote-title-block {
    padding: 18px 16px 12px;
  }

  .quote-title-block h2 {
    margin: 7px 0 8px;
    font-size: 30px;
  }

  .quote-title-block p {
    font-size: 13px;
  }

  .quote-tags {
    gap: 6px;
    margin-top: 12px;
  }

  .quote-tags span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }

  .quote-total-block {
    min-height: 112px;
    padding: 16px;
    gap: 8px;
  }

  .quote-total-block span,
  .quote-total-block small {
    font-size: 12px;
  }

  .quote-total-block strong {
    font-size: 42px;
  }

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

  .quote-money-item,
  .quote-money-item:first-child {
    grid-column: auto;
    min-height: 86px;
    padding: 13px 11px 10px;
  }

  .quote-money-item::before {
    left: 11px;
    right: 11px;
  }

  .quote-money-item::after {
    left: 11px;
    bottom: 13px;
    font-size: 12px;
  }

  .quote-money-item span {
    font-size: 11px;
  }

  .quote-money-item input {
    min-height: 28px;
    padding-left: 15px;
    font-size: 19px;
  }

  .quote-money-item input::placeholder {
    font-size: 12px;
  }

  .quote-config {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .quote-option {
    gap: 6px;
  }

  .quote-option span {
    font-size: 11px;
  }

  .quote-option select {
    min-height: 38px;
    padding: 0 8px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .quote-money-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-money-item:first-child {
    grid-column: auto;
  }

  .quote-total-block strong {
    font-size: 38px;
  }

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

@media (max-width: 360px) {
  .quote-title-block h2 {
    font-size: 27px;
  }

  .quote-total-block strong {
    font-size: 34px;
  }

  .quote-money-item input {
    font-size: 17px;
  }

  .quote-option select {
    font-size: 12px;
  }
}
/* compact mobile quote card end */

/* compact mobile quote fine tune start */
@media (max-width: 760px) {
  .quote-config {
    gap: 6px;
    padding: 10px;
  }

  .quote-option span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .quote-option select {
    min-height: 34px;
    padding: 0 5px;
    border-radius: 6px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .quote-config {
    grid-template-columns: 1fr;
  }

  .quote-option {
    grid-template-columns: 82px 1fr;
    align-items: center;
  }
}
/* compact mobile quote fine tune end */


/* vehicle plan panel start */
.vehicle-plan-panel {
  margin-bottom: 24px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 9, 8, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 9, 8, 0.035), transparent 32%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 58px rgba(8, 9, 8, 0.08);
}

.vehicle-plan-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.vehicle-plan-head h2 {
  margin: 8px 0 0;
  color: #080908;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.08;
}

.vehicle-plan-head strong {
  padding: 9px 12px;
  border: 1px solid rgba(8, 9, 8, 0.84);
  background: #080908;
  color: #f8f5eb;
  font-size: 13px;
  white-space: nowrap;
}

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

.vehicle-card {
  padding: 18px;
  border: 1px solid rgba(8, 9, 8, 0.1);
  border-radius: 8px;
  background: #fffefa;
}

.vehicle-card-wide {
  grid-column: span 3;
}

.vehicle-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.vehicle-card-title span {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  background: #080908;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.vehicle-card-title h3 {
  margin: 0;
  color: #080908;
  font-size: 22px;
}

.vehicle-card p,
.vehicle-subplan p {
  margin: 0 0 10px;
  color: rgba(8, 9, 8, 0.66);
  line-height: 1.75;
  font-weight: 700;
}

.vehicle-card ul,
.vehicle-subplan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vehicle-card li,
.vehicle-subplan li {
  padding: 7px 10px;
  border: 1px solid rgba(8, 9, 8, 0.12);
  border-radius: 999px;
  background: rgba(248, 245, 235, 0.72);
  color: rgba(8, 9, 8, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.vehicle-subplan {
  margin-top: 14px;
  padding: 14px;
  border-left: 3px solid #080908;
  background: rgba(248, 245, 235, 0.62);
}

.vehicle-subplan h4 {
  margin: 0 0 8px;
  color: #080908;
  font-size: 17px;
}

.vehicle-note {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 9, 8, 0.1);
  border-radius: 8px;
  background: rgba(8, 9, 8, 0.04);
  color: rgba(8, 9, 8, 0.72);
  line-height: 1.75;
  font-weight: 800;
}

.vehicle-note.is-warning {
  border-color: rgba(8, 9, 8, 0.82);
  background: #080908;
  color: #f8f5eb;
}

@media (max-width: 920px) {
  .vehicle-plan-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .vehicle-plan-panel {
    padding: 18px;
  }

  .vehicle-plan-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .vehicle-plan-head strong {
    white-space: normal;
  }

  .vehicle-card {
    padding: 15px;
  }

  .vehicle-card-title h3 {
    font-size: 20px;
  }

  .vehicle-card ul,
  .vehicle-subplan ul {
    display: grid;
    grid-template-columns: 1fr;
  }
}
/* vehicle plan panel end */

/* vehicle plan polish start */
.vehicle-card:not(.vehicle-card-wide) {
  display: flex;
  flex-direction: column;
}

.vehicle-card:not(.vehicle-card-wide) .vehicle-note {
  margin-top: auto;
}

.vehicle-plan-panel .eyebrow {
  color: #007b4d;
}
/* vehicle plan polish end */


/* vehicle matrix panel start */
.vehicle-matrix-panel {
  margin-bottom: 24px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(8, 9, 8, 0.16);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 18px 58px rgba(8, 9, 8, 0.08);
}

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

.vehicle-matrix-head h2 {
  margin: 8px 0 0;
  color: #080908;
  font-size: clamp(26px, 3.3vw, 38px);
  line-height: 1.08;
}

.vehicle-matrix-head strong {
  padding: 9px 12px;
  background: #080908;
  color: #f8f5eb;
  font-size: 13px;
  white-space: nowrap;
}

.vehicle-matrix {
  overflow: hidden;
  border: 1px solid rgba(8, 9, 8, 0.12);
  border-radius: 8px;
  background: rgba(8, 9, 8, 0.12);
}

.vehicle-matrix-row {
  display: grid;
  grid-template-columns: 1.05fr 1.75fr 1fr 1.25fr 1.25fr 1.75fr;
  gap: 1px;
  background: rgba(8, 9, 8, 0.12);
}

.vehicle-matrix-row > div {
  min-height: 76px;
  padding: 13px 12px;
  display: flex;
  align-items: center;
  background: #fffefa;
  color: rgba(8, 9, 8, 0.74);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.vehicle-matrix-header > div {
  min-height: 42px;
  background: #080908;
  color: rgba(248, 245, 235, 0.72);
  font-size: 12px;
  line-height: 1.2;
}

.vehicle-matrix-row.is-priority > div {
  background: linear-gradient(135deg, rgba(25, 245, 139, 0.08), transparent 38%), #fffefa;
}

.vehicle-brand {
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
  gap: 4px;
}

.vehicle-brand span {
  color: rgba(8, 9, 8, 0.52);
  font-size: 12px;
}

.vehicle-brand strong {
  color: #080908;
  font-size: 18px;
  line-height: 1.1;
}

.vehicle-matrix b {
  color: #080908;
  font-size: 15px;
}

.matrix-warning {
  background: #080908 !important;
  color: #f8f5eb !important;
}

@media (max-width: 980px) {
  .vehicle-matrix {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .vehicle-matrix-header {
    display: none;
  }

  .vehicle-matrix-row {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(8, 9, 8, 0.12);
    border-radius: 8px;
  }

  .vehicle-matrix-row > div {
    min-height: 56px;
    padding: 11px;
  }

  .vehicle-brand {
    grid-column: span 2;
    min-height: 54px !important;
    background: #080908 !important;
  }

  .vehicle-brand span {
    color: rgba(248, 245, 235, 0.6);
  }

  .vehicle-brand strong {
    color: #f8f5eb;
  }
}

@media (max-width: 760px) {
  .vehicle-matrix-panel {
    padding: 16px;
  }

  .vehicle-matrix-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .vehicle-matrix-head strong {
    white-space: normal;
  }

  .vehicle-matrix-row {
    grid-template-columns: 1fr;
  }

  .vehicle-brand {
    grid-column: auto;
  }
}
/* vehicle matrix panel end */

/* vehicle matrix compact polish start */
.vehicle-matrix-row {
  grid-template-columns: 0.95fr 1.65fr 0.9fr 1.12fr 1.12fr 1.55fr;
}

.vehicle-matrix-row > div {
  min-height: 68px;
  padding: 11px 10px;
  font-size: 12px;
  line-height: 1.45;
}

.vehicle-brand strong {
  font-size: 16px;
}

.vehicle-matrix b {
  font-size: 14px;
}
/* vehicle matrix compact polish end */


/* vehicle matrix excel polish start */
.vehicle-matrix-head h2 {
  font-size: clamp(20px, 2.4vw, 28px);
}

.vehicle-matrix {
  border-radius: 0;
  border: 2px solid #080908;
  background: #080908;
}

.vehicle-matrix-row {
  gap: 0;
  border-bottom: 1px solid #080908;
}

.vehicle-matrix-row:last-child {
  border-bottom: 0;
}

.vehicle-matrix-row > div {
  min-height: 76px;
  padding: 13px 12px;
  border-right: 1px solid #080908;
  font-size: 14px;
  line-height: 1.55;
}

.vehicle-matrix-row > div:last-child {
  border-right: 0;
}

.vehicle-matrix-header > div {
  min-height: 40px;
  font-size: 13px;
}

.vehicle-brand strong {
  font-size: 18px;
}

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

.vehicle-matrix b {
  font-size: 16px;
}

@media (max-width: 980px) {
  .vehicle-matrix {
    border: 0;
    background: transparent;
  }

  .vehicle-matrix-row {
    gap: 0;
    border: 2px solid #080908;
    border-radius: 0;
  }

  .vehicle-matrix-row > div {
    border-right: 1px solid #080908;
    border-bottom: 1px solid #080908;
    font-size: 14px;
  }

  .vehicle-matrix-row > div:nth-child(2n) {
    border-right: 0;
  }

  .vehicle-matrix-row > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .vehicle-matrix-head h2 {
    font-size: 24px;
  }

  .vehicle-matrix-row > div {
    border-right: 0;
    font-size: 14px;
  }
}
/* vehicle matrix excel polish end */


/* vehicle matrix mobile card start */
@media (max-width: 760px) {
  .vehicle-matrix-panel {
    padding: 14px;
  }

  .vehicle-matrix-head h2 {
    font-size: 22px;
  }

  .vehicle-matrix-head strong {
    padding: 8px 10px;
    font-size: 12px;
  }

  .vehicle-matrix {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .vehicle-matrix-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 2px solid #080908;
    border-radius: 8px;
    background: #080908;
  }

  .vehicle-matrix-row > div {
    position: relative;
    min-height: auto;
    padding: 26px 13px 12px;
    border-right: 0;
    border-bottom: 1px solid #080908;
    background: #fffefa;
    color: rgba(8, 9, 8, 0.82);
    font-size: 14px;
    line-height: 1.6;
  }

  .vehicle-matrix-row > div:last-child {
    border-bottom: 0;
  }

  .vehicle-brand {
    padding: 12px 13px !important;
    min-height: 58px !important;
    background: #080908 !important;
  }

  .vehicle-brand::before {
    display: none;
  }

  .vehicle-brand span {
    color: rgba(248, 245, 235, 0.6);
  }

  .vehicle-brand strong {
    color: #f8f5eb;
    font-size: 20px;
  }

  .vehicle-matrix-row > div:nth-child(2)::before { content: "车辆范围"; }
  .vehicle-matrix-row > div:nth-child(3)::before { content: "活动方案"; }
  .vehicle-matrix-row > div:nth-child(4)::before { content: "比例 / 期数"; }
  .vehicle-matrix-row > div:nth-child(5)::before { content: "保险 / 税费"; }
  .vehicle-matrix-row > div:nth-child(6)::before { content: "注意事项"; }

  .vehicle-matrix-row > div::before {
    position: absolute;
    left: 13px;
    top: 8px;
    color: rgba(8, 9, 8, 0.46);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
  }

  .matrix-warning {
    padding-top: 28px !important;
    background: #080908 !important;
    color: #f8f5eb !important;
  }

  .matrix-warning::before {
    color: rgba(248, 245, 235, 0.62) !important;
  }
}
/* vehicle matrix mobile card end */


/* vehicle matrix mobile excel mini start */
@media (max-width: 760px) {
  .vehicle-matrix-panel {
    padding: 12px;
  }

  .vehicle-matrix-head {
    margin-bottom: 10px;
  }

  .vehicle-matrix-head h2 {
    font-size: 20px;
  }

  .vehicle-matrix-head strong {
    padding: 6px 8px;
    font-size: 10px;
  }

  .vehicle-matrix {
    display: block;
    overflow: hidden;
    border: 2px solid #080908;
    border-radius: 0;
    background: #080908;
  }

  .vehicle-matrix-header {
    display: grid !important;
  }

  .vehicle-matrix-row {
    display: grid;
    grid-template-columns: 0.9fr 1.65fr 0.88fr 1.08fr 1.12fr 1.58fr !important;
    gap: 0;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid #080908;
    border-radius: 0;
    background: transparent;
  }

  .vehicle-matrix-row:last-child {
    border-bottom: 0;
  }

  .vehicle-matrix-row > div {
    min-height: 46px;
    padding: 5px 4px;
    display: flex;
    align-items: center;
    border-right: 1px solid #080908;
    border-bottom: 0;
    background: #fffefa;
    color: rgba(8, 9, 8, 0.86);
    font-size: 8px;
    line-height: 1.35;
    font-weight: 900;
    word-break: break-word;
  }

  .vehicle-matrix-row > div:last-child {
    border-right: 0;
  }

  .vehicle-matrix-row > div::before {
    display: none !important;
  }

  .vehicle-matrix-header > div {
    min-height: 24px;
    padding: 4px;
    background: #080908;
    color: rgba(248, 245, 235, 0.76);
    font-size: 7px;
    line-height: 1.15;
  }

  .vehicle-brand {
    grid-column: auto;
    min-height: 46px !important;
    padding: 5px 4px !important;
    align-items: flex-start !important;
    background: #fffefa !important;
  }

  .vehicle-brand span {
    color: rgba(8, 9, 8, 0.52);
    font-size: 7px;
    line-height: 1.1;
  }

  .vehicle-brand strong {
    color: #080908;
    font-size: 10px;
    line-height: 1.12;
  }

  .vehicle-matrix b {
    font-size: 9px;
  }

  .matrix-warning {
    padding: 5px 4px !important;
    background: #080908 !important;
    color: #f8f5eb !important;
  }

  .matrix-warning::before {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .vehicle-matrix-row > div {
    font-size: 7px;
    min-height: 44px;
    padding: 4px 3px;
  }

  .vehicle-brand strong {
    font-size: 9px;
  }

  .vehicle-brand span,
  .vehicle-matrix-header > div {
    font-size: 6px;
  }

  .vehicle-matrix b {
    font-size: 8px;
  }
}
/* vehicle matrix mobile excel mini end */



/* manual deposit rate start */
.manual-rate-input {
  display: none;
  margin-top: 8px;
}

.manual-rate-input.is-active {
  display: block;
}

.quote-option .manual-rate-input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(8, 9, 8, 0.16);
  border-radius: 8px;
  background: #fff;
  color: #080908;
  font: inherit;
  font-weight: 900;
  outline: none;
}

.quote-option .manual-rate-input:focus {
  border-color: rgba(8, 9, 8, 0.48);
  box-shadow: 0 0 0 3px rgba(25, 245, 139, 0.15);
}

@media (max-width: 760px) {
  .quote-option .manual-rate-input {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }
}
/* manual deposit rate end */


/* latest notice start */
.latest-notice {
  position: relative;
  margin: 0 0 22px;
  padding: 18px 20px 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 8, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 245, 139, 0.14), transparent 34%),
    #080908;
  color: #f8f5eb;
  box-shadow: 0 18px 54px rgba(8, 9, 8, 0.12);
}

.latest-notice::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 245, 139, 0.95), transparent);
  box-shadow: 0 0 16px rgba(25, 245, 139, 0.36);
}

.latest-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.latest-notice p {
  margin: 0;
  color: #f8f5eb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  font-weight: 900;
}

@media (max-width: 760px) {
  .latest-notice {
    margin-bottom: 18px;
    padding: 15px 16px;
  }

  .latest-notice p {
    font-size: 15px;
  }
}
/* latest notice end */


/* latest notice light start */
.latest-notice {
  border: 2px solid #080908 !important;
  background:
    linear-gradient(90deg, rgba(25, 245, 139, 0.18), transparent 34%),
    #fffefa !important;
  color: #080908 !important;
  box-shadow: 0 16px 44px rgba(8, 9, 8, 0.1) !important;
}

.latest-notice::before {
  left: 0 !important;
  right: auto !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 6px !important;
  height: auto !important;
  background: #19f58b !important;
  box-shadow: 0 0 18px rgba(25, 245, 139, 0.5) !important;
}

.latest-notice strong {
  color: #080908 !important;
}

.latest-notice p {
  color: #080908 !important;
}
/* latest notice light end */



/* risk panel start */
.risk-panel {
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 28px);
  border: 2px solid #080908;
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 18px 58px rgba(8, 9, 8, 0.08);
}

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

.risk-head h2 {
  margin: 8px 0 0;
  color: #080908;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.08;
}

.risk-head strong {
  padding: 8px 11px;
  background: #080908;
  color: #f8f5eb;
  font-size: 13px;
  white-space: nowrap;
}

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

.risk-group {
  padding: 16px;
  border: 1px solid rgba(8, 9, 8, 0.16);
  border-radius: 8px;
  background: rgba(248, 245, 235, 0.5);
}

.risk-group h3 {
  margin: 0 0 10px;
  color: #080908;
  font-size: 18px;
}

.risk-group ul {
  margin: 0;
  padding-left: 18px;
}

.risk-group li {
  margin: 8px 0;
  color: rgba(8, 9, 8, 0.76);
  line-height: 1.65;
  font-weight: 800;
}

@media (max-width: 760px) {
  .risk-panel {
    padding: 16px;
  }

  .risk-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .risk-head strong {
    white-space: normal;
  }

  .risk-grid {
    grid-template-columns: 1fr;
  }
}
/* risk panel end */


/* risk panel compact start */
.risk-panel {
  padding: 18px !important;
}

.risk-head {
  margin-bottom: 12px !important;
}

.risk-head h2 {
  font-size: clamp(22px, 2.6vw, 30px) !important;
}

.risk-head strong {
  padding: 6px 9px !important;
  font-size: 12px !important;
}

.risk-grid {
  gap: 8px !important;
}

.risk-group {
  padding: 12px !important;
}

.risk-group h3 {
  margin-bottom: 6px !important;
  font-size: 16px !important;
}

.risk-group ul {
  padding-left: 16px !important;
}

.risk-group li {
  margin: 4px 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

@media (max-width: 760px) {
  .risk-panel {
    padding: 14px !important;
  }
}
/* risk panel compact end */


/* info rich row start */
.info-table .info-rich-row strong {
  line-height: 1.65;
}

.info-table .info-rich-row b {
  color: #080908;
}

.info-table .info-rich-row small {
  display: block;
  margin-top: 6px;
  color: rgba(8, 9, 8, 0.62);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 800;
}
/* info rich row end */


/* txd product panel start */
.txd-product-panel {
  margin-bottom: 22px;
}

.txd-product-card h2 {
  text-align: center;
}

.txd-product-card p {
  line-height: 1.75;
}

.txd-product-card p strong {
  color: #080908;
}
/* txd product panel end */


.txd-calculator-panel {
  position: relative;
  margin: 20px 0 18px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.92)),
    radial-gradient(circle at 12% 0%, rgba(22, 163, 74, .12), transparent 30%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
  overflow: hidden;
}

.txd-calculator-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(15, 23, 42, .08), transparent) 0 0 / 180px 1px repeat-x,
    linear-gradient(180deg, transparent, rgba(15, 23, 42, .05), transparent) 0 0 / 1px 180px repeat-y;
  opacity: .45;
}

.txd-calculator-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.txd-calculator-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}

.txd-calculator-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 900px;
  border: 0;
  border-radius: 20px;
  background: transparent;
}

@media (max-width: 760px) {
  .txd-calculator-panel {
    margin: 14px 0;
    padding: 12px;
    border-radius: 20px;
  }

  .txd-calculator-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }

  .txd-calculator-head h2 {
    font-size: 24px;
  }

  .txd-calculator-frame {
    min-height: 1180px;
    border-radius: 16px;
  }
}


/* tianxiada mobile polish start */
body.page-tianxiada {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(244, 241, 233, 0.42) 52%, rgba(255, 255, 255, 0.96)),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 56%, #f2efe7 100%);
}

body.page-tianxiada::before,
body.page-tianxiada::after {
  content: "";
  position: fixed;
  left: -42vw;
  z-index: 0;
  width: 42vw;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.16), rgba(8, 9, 8, 0.62), transparent);
  box-shadow: 0 0 20px rgba(8, 9, 8, 0.14);
  transform: skewX(-18deg);
  animation: fastBlackLine 0.72s linear infinite;
}

body.page-tianxiada::before {
  top: 18%;
}

body.page-tianxiada::after {
  top: 67%;
  animation-delay: 0.28s;
}

body.page-tianxiada .site-shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  body.page-tianxiada::before,
  body.page-tianxiada::after {
    left: -68vw;
    width: 68vw;
    height: 1px;
    animation-duration: 0.54s;
    opacity: 0.72;
  }

  body.page-tianxiada .site-shell {
    width: min(100% - 18px, 560px);
    padding: 14px 0 26px;
  }

  body.page-tianxiada .top-nav {
    margin-bottom: 6px;
  }

  body.page-tianxiada .top-nav a,
  body.page-tianxiada .top-nav button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  body.page-tianxiada .page-title {
    padding: 18px 0 12px;
  }

  body.page-tianxiada .page-title .eyebrow {
    font-size: 12px;
  }

  body.page-tianxiada .page-title h1 {
    margin: 8px 0 0;
    font-size: clamp(40px, 14vw, 58px);
    line-height: 0.96;
  }

  body.page-tianxiada .latest-notice {
    margin-bottom: 12px;
    padding: 12px 12px 12px 17px;
    border-width: 1px !important;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(8, 9, 8, 0.08) !important;
  }

  body.page-tianxiada .latest-notice::before {
    width: 4px !important;
  }

  body.page-tianxiada .latest-notice strong {
    margin-bottom: 4px;
    font-size: 12px;
  }

  body.page-tianxiada .latest-notice p {
    font-size: 14px;
    line-height: 1.45;
  }

  body.page-tianxiada .info-panel,
  body.page-tianxiada .mini-card {
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(8, 9, 8, 0.07);
  }

  body.page-tianxiada .info-panel h2 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 20px;
  }

  body.page-tianxiada .info-table {
    gap: 0;
  }

  body.page-tianxiada .info-table div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 9px 0;
  }

  body.page-tianxiada .info-table span {
    font-size: 12px;
    line-height: 1.25;
  }

  body.page-tianxiada .info-table strong {
    font-size: 14px;
    line-height: 1.52;
    word-break: break-word;
  }

  body.page-tianxiada .info-table .info-rich-row small {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
  }

  body.page-tianxiada .txd-product-panel {
    gap: 10px;
    margin-bottom: 12px;
  }

  body.page-tianxiada .txd-product-card h2 {
    margin-bottom: 9px;
    font-size: 20px;
  }

  body.page-tianxiada .txd-product-card p {
    margin: 7px 0 0;
    font-size: 14px;
    line-height: 1.55;
  }

  body.page-tianxiada .risk-panel {
    margin-bottom: 12px;
    padding: 12px !important;
    border-width: 1px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(8, 9, 8, 0.07);
  }

  body.page-tianxiada .risk-head {
    align-items: center;
    gap: 8px;
    margin-bottom: 10px !important;
    text-align: center;
  }

  body.page-tianxiada .risk-head .eyebrow {
    width: 100%;
    font-size: 11px;
  }

  body.page-tianxiada .risk-head h2 {
    width: 100%;
    margin-top: 4px;
    font-size: 22px !important;
  }

  body.page-tianxiada .risk-head strong {
    width: 100%;
    padding: 6px 8px !important;
    font-size: 11px !important;
  }

  body.page-tianxiada .risk-grid {
    gap: 8px !important;
  }

  body.page-tianxiada .risk-group {
    padding: 10px !important;
    border-radius: 8px;
  }

  body.page-tianxiada .risk-group h3 {
    margin-bottom: 5px !important;
    font-size: 15px !important;
  }

  body.page-tianxiada .risk-group ul {
    padding-left: 15px !important;
  }

  body.page-tianxiada .risk-group li {
    margin: 3px 0 !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  body.page-tianxiada .txd-calculator-panel {
    margin: 12px 0 8px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  }

  body.page-tianxiada .txd-calculator-head {
    gap: 5px;
    margin-bottom: 8px;
    text-align: center;
  }

  body.page-tianxiada .txd-calculator-head .eyebrow,
  body.page-tianxiada .txd-calculator-head h2 {
    width: 100%;
  }

  body.page-tianxiada .txd-calculator-head h2 {
    font-size: 22px;
  }

  body.page-tianxiada .txd-calculator-frame {
    min-height: 1580px;
    border-radius: 10px;
  }
}

@media (max-width: 390px) {
  body.page-tianxiada .site-shell {
    width: calc(100% - 12px);
  }

  body.page-tianxiada .page-title h1 {
    font-size: clamp(36px, 13vw, 48px);
  }

  body.page-tianxiada .info-panel,
  body.page-tianxiada .mini-card,
  body.page-tianxiada .risk-panel {
    padding: 11px !important;
  }

body.page-tianxiada .txd-calculator-panel {
    padding: 6px;
  }
}
/* tianxiada mobile polish end */


/* home redesign preview start */
body.home-redesign {
  min-height: 100dvh;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 245, 139, 0.1), transparent 32%),
    linear-gradient(180deg, #f7faf8 0%, #e8eeeb 100%);
  color: #080908;
}

.home-redesign .luxury-bg {
  display: none;
}

.home-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.home-hero {
  position: relative;
  min-height: calc(100dvh - 118px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 34px;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(8, 9, 8, 0.08);
  border-radius: 30px;
  background: #f7f8f6;
  box-shadow: 0 34px 110px rgba(8, 9, 8, 0.14);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.015);
}

.home-hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(249, 251, 249, 0.94) 0%, rgba(249, 251, 249, 0.7) 42%, rgba(249, 251, 249, 0.84) 100%),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.68) 64%, rgba(255, 255, 255, 0.92) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.86));
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-wordmark,
.home-nav-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.home-wordmark {
  padding: 0 16px;
  border: 1px solid rgba(8, 9, 8, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: #080908;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.home-nav-tags span {
  padding: 0 13px;
  border: 1px solid rgba(8, 9, 8, 0.1);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(8, 9, 8, 0.72);
}

.home-hero-copy {
  width: min(820px, 100%);
  align-self: center;
  justify-self: center;
  padding: 36px 0 28px;
  text-align: center;
  animation: homeRise 640ms cubic-bezier(0.2, 0.76, 0.16, 1) both;
}

.home-kicker {
  margin: 0 0 18px;
  color: #00845a;
  font-size: 15px;
  font-weight: 900;
}

.home-hero-copy h1 {
  margin: 0 auto;
  max-width: 780px;
  color: #070807;
  font-size: 82px;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero-copy p:last-child {
  margin: 22px auto 0;
  width: min(600px, 100%);
  color: rgba(8, 9, 8, 0.68);
  font-size: 19px;
  line-height: 1.8;
  font-weight: 700;
}

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

.home-product-card {
  position: relative;
  min-height: 168px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 26px;
  text-align: center;
  overflow: hidden;
  border-radius: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(25, 245, 139, 0.16), transparent 44%);
  opacity: 0.72;
}

.home-product-card::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 245, 139, 0.9), transparent);
  animation: homeSweep 1.1s linear infinite;
}

.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(8, 9, 8, 0.14);
}

.home-product-card:active {
  transform: translateY(-1px) scale(0.99);
}

.home-product-dark {
  border: 1px solid rgba(8, 9, 8, 0.92);
  background: rgba(8, 9, 8, 0.96);
  color: #ffffff;
}

.home-product-light {
  border: 1px solid rgba(8, 9, 8, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: #080908;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.home-product-name,
.home-product-copy,
.home-product-meta {
  position: relative;
  z-index: 1;
}

.home-product-name {
  font-size: 54px;
  line-height: 0.95;
  font-weight: 900;
}

.home-product-copy {
  color: currentColor;
  font-size: 18px;
  font-weight: 900;
}

.home-product-meta {
  color: rgba(8, 9, 8, 0.58);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

.home-product-dark .home-product-meta {
  color: rgba(255, 255, 255, 0.58);
}

.home-brand-floor {
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(8, 9, 8, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 70px rgba(8, 9, 8, 0.06);
}

.home-brand-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.home-brand-item {
  min-height: 44px;
  display: grid;
  place-items: center;
}

.home-brand-item img {
  max-width: 118px;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.16);
  opacity: 0.78;
}

.home-brand-item img[src*="nio.svg"],
.home-brand-item img[src*="aito-word.svg"],
.home-brand-item img[src*="firefly.svg"],
.home-brand-item img[src*="onvo-wordmark.svg"] {
  filter: brightness(0) saturate(1) contrast(1.12);
}

.home-brand-lexus img {
  max-width: 100px;
  max-height: 58px;
}

.home-mini-entry {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding-bottom: 10px;
}

.home-mini-button {
  width: min(420px, 100%);
  min-height: 62px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 12px 20px;
  border: 1px solid rgba(8, 9, 8, 0.92);
  border-radius: 999px;
  background: #080908;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(8, 9, 8, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-mini-button span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.home-mini-button strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.home-mini-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(8, 9, 8, 0.2);
}

.home-mini-button:active {
  transform: translateY(0) scale(0.99);
}

.home-mini-button:focus-visible {
  outline: 3px solid rgba(0, 132, 90, 0.28);
  outline-offset: 3px;
}

@keyframes homeRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeSweep {
  from {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }
  16% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(460%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-copy,
  .home-product-card::after {
    animation: none;
  }

  .home-product-card {
    transition: none;
  }

  .home-mini-button {
    transition: none;
  }
}

@media (max-width: 920px) {
  body.home-redesign {
    padding: 12px;
  }

  .home-hero {
    min-height: auto;
    gap: 46px;
    padding: 20px;
    border-radius: 24px;
  }

  .home-hero-wash {
    background:
      linear-gradient(180deg, rgba(249, 251, 249, 0.94) 0%, rgba(249, 251, 249, 0.72) 55%, rgba(249, 251, 249, 0.9) 100%),
      radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.72) 72%);
  }

  .home-hero-copy {
    padding: 24px 0 4px;
  }

  .home-hero-copy h1 {
    font-size: 54px;
    line-height: 1.04;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-brand-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.home-redesign {
    padding: 10px;
  }

  .home-hero {
    gap: 34px;
    padding: 16px;
    border-radius: 22px;
  }

  .home-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .home-wordmark,
  .home-nav-tags span {
    min-height: 36px;
    font-size: 12px;
  }

  .home-hero-copy h1 {
    font-size: 40px;
  }

  .home-hero-copy p:last-child {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-product-card {
    min-height: 142px;
    padding: 20px;
    border-radius: 18px;
  }

  .home-product-name {
    font-size: 42px;
  }

  .home-product-copy {
    font-size: 15px;
  }

  .home-product-meta {
    font-size: 12px;
  }

  .home-brand-floor {
    margin-top: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .home-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .home-brand-item {
    min-height: 42px;
  }

  .home-brand-item img {
    max-width: 110px;
  }
}
/* home redesign preview end */


/* full site ui polish start */
:root {
  --ui-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --ui-ink: #08110e;
  --ui-muted: #66736f;
  --ui-soft: #f6f9f7;
  --ui-card: rgba(255, 255, 255, 0.92);
  --ui-line: rgba(8, 17, 14, 0.1);
  --ui-accent: #12d982;
}

body:not(.home-redesign) {
  font-family: var(--ui-font);
  color: var(--ui-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 217, 130, 0.11), transparent 30%),
    linear-gradient(180deg, #fbfcfb 0%, #eef4f0 100%);
}

body:not(.home-redesign)::selection {
  background: rgba(18, 217, 130, 0.25);
}

.site-shell {
  width: min(1160px, calc(100% - 32px));
  padding: 28px 0 58px;
}

.top-nav {
  gap: 10px;
  padding-top: 4px;
}

.top-nav a,
.top-nav button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(8, 17, 14, 0.72);
  font-family: var(--ui-font);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(8, 17, 14, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-password-link {
  background:
    linear-gradient(120deg, rgba(18, 217, 130, 0.16), transparent 46%),
    #08110e !important;
  color: #ffffff !important;
}

.page-title {
  padding: 42px 0 26px;
}

.page-title h1 {
  margin: 10px 0 12px;
  color: #07100d;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-title p {
  max-width: 680px;
  color: var(--ui-muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 700;
}

.eyebrow {
  color: #00845a;
  font-size: 13px;
  font-weight: 900;
}

.calculator-panel,
.info-panel,
.notice-section,
.mini-card,
.vehicle-matrix-panel,
.quote-card {
  border: 1px solid var(--ui-line);
  border-radius: 22px;
  background: var(--ui-card);
  box-shadow: 0 20px 60px rgba(8, 17, 14, 0.07);
}

.info-panel,
.notice-section,
.mini-card {
  margin-bottom: 18px;
  padding: 24px;
}

.info-panel h2,
.notice-section h2,
.mini-card h2,
.vehicle-matrix-head h2,
.quote-title-block h2 {
  color: #07100d;
  letter-spacing: 0;
}

.info-table {
  gap: 10px;
}

.info-table div {
  grid-template-columns: 150px 1fr;
  align-items: start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(8, 17, 14, 0.08);
}

.info-table span {
  color: #7a8581;
  font-size: 13px;
  font-weight: 900;
}

.info-table strong {
  color: #111c18;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 850;
}

.info-table .info-rich-row small {
  color: #66736f;
  font-size: 13px;
}

.latest-notice {
  margin-bottom: 18px;
  padding: 18px 20px 18px 24px;
  border: 1px solid rgba(18, 217, 130, 0.28) !important;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(18, 217, 130, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 18px 50px rgba(8, 17, 14, 0.06) !important;
}

.latest-notice::before {
  width: 5px !important;
  border-radius: 999px;
  background: var(--ui-accent) !important;
}

.latest-notice strong {
  color: #00845a !important;
  font-size: 13px;
}

.latest-notice p {
  color: #0b1511 !important;
  font-size: 18px;
  line-height: 1.6;
}

.product-grid {
  gap: 16px;
}

.txd-product-card h2 {
  font-size: 28px;
}

.txd-product-card p {
  color: #596763;
  font-size: 16px;
  line-height: 1.7;
}

.txd-product-card p strong {
  color: #07100d;
}

.risk-panel {
  margin-bottom: 18px;
  padding: 20px !important;
  border: 1px solid rgba(8, 17, 14, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(8, 17, 14, 0.07);
}

.risk-head {
  align-items: center;
  margin-bottom: 16px !important;
}

.risk-head h2 {
  color: #07100d;
  font-size: 30px !important;
}

.risk-head strong {
  border-radius: 999px;
  background: #08110e;
  color: #ffffff;
}

.risk-grid {
  gap: 12px !important;
}

.risk-group {
  padding: 16px !important;
  border: 1px solid rgba(8, 17, 14, 0.08);
  border-radius: 18px;
  background: #f8fbf9;
}

.risk-group h3 {
  color: #07100d;
  font-size: 17px !important;
}

.risk-group li {
  color: #53615d;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.txd-calculator-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--ui-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(8, 17, 14, 0.08);
}

.txd-calculator-head {
  margin-bottom: 14px;
}

.txd-calculator-head h2 {
  color: #07100d;
}

.txd-calculator-frame {
  border-radius: 18px;
}

.quote-card {
  margin-bottom: 22px;
  overflow: hidden;
}

.quote-card-header {
  background:
    linear-gradient(120deg, rgba(18, 217, 130, 0.14), transparent 48%),
    #ffffff;
}

.quote-title-block p,
.quote-tags span,
.quote-money-item span,
.quote-option span {
  color: #66736f;
}

.quote-total-block,
.money-field,
.calc-total {
  background:
    linear-gradient(135deg, rgba(18, 217, 130, 0.16), transparent 38%),
    #08110e;
}

.quote-money-item,
.quote-option {
  border-color: rgba(8, 17, 14, 0.1);
  border-radius: 18px;
  background: #ffffff;
}

.quote-money-item input,
.quote-option select,
.quote-option input {
  border-radius: 14px;
  font-family: var(--ui-font);
}

.vehicle-matrix-panel {
  margin-bottom: 20px;
  padding: 24px;
}

.vehicle-matrix-head {
  align-items: center;
  margin-bottom: 16px;
}

.vehicle-matrix-head strong {
  border-radius: 999px;
  background: rgba(18, 217, 130, 0.14);
  color: #007a55;
}

.vehicle-matrix {
  overflow: auto;
  border: 1px solid rgba(8, 17, 14, 0.08);
  border-radius: 18px;
  background: #ffffff;
}

.vehicle-matrix-row {
  border-color: rgba(8, 17, 14, 0.08);
}

.vehicle-matrix-header {
  background: #eef7f2;
  color: #07100d;
}

.vehicle-brand span {
  color: #66736f;
}

.vehicle-brand strong,
.matrix-warning {
  color: #07100d;
}

.notice-list p {
  border-left-color: var(--ui-accent);
  border-radius: 16px;
  background: #f8fbf9;
  color: #53615d;
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 560px);
    padding: 16px 0 34px;
  }

  .page-title {
    padding: 28px 0 18px;
    text-align: center;
  }

  .page-title h1 {
    font-size: 42px;
  }

  .page-title p {
    margin: 0 auto;
    font-size: 15px;
  }

  .info-panel,
  .notice-section,
  .mini-card,
  .vehicle-matrix-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .info-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .latest-notice {
    padding: 14px 15px 14px 18px;
    border-radius: 18px;
  }

  .latest-notice p {
    font-size: 14px;
  }

  .risk-panel,
  .txd-calculator-panel {
    padding: 14px !important;
    border-radius: 18px;
  }

  .risk-head {
    text-align: center;
  }

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

  .vehicle-matrix {
    border-radius: 14px;
  }
}
/* full site ui polish end */

/* final whole-site design pass start */
:root {
  --ui-radius: 22px;
  --ui-radius-sm: 16px;
  --ui-shadow-soft: 0 22px 70px rgba(8, 17, 14, 0.08);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.home-redesign {
  font-family: var(--ui-font);
  background:
    radial-gradient(circle at 50% -8%, rgba(18, 217, 130, 0.16), transparent 36%),
    linear-gradient(180deg, #f9fbfa 0%, #e8efeb 100%);
}

.home-hero {
  border-radius: 34px;
  box-shadow: 0 42px 130px rgba(8, 9, 8, 0.16);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(8, 9, 8, 0.055) 18px 19px, transparent 19px 52px),
    linear-gradient(90deg, transparent, rgba(8, 9, 8, 0.1), transparent);
  background-size: 100% 100%, 45% 100%;
  background-position: 0 0, -55% 0;
  mix-blend-mode: multiply;
  animation: homeFastScan 760ms linear infinite;
}

.home-hero-wash {
  background:
    linear-gradient(180deg, rgba(251, 253, 252, 0.9) 0%, rgba(251, 253, 252, 0.58) 45%, rgba(251, 253, 252, 0.88) 100%),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.72) 74%);
}

.home-kicker {
  color: #007a55;
  font-size: 13px;
  letter-spacing: 0;
}

.home-hero-copy h1 {
  width: min(900px, 100%);
  font-size: clamp(50px, 7.2vw, 94px);
  font-weight: 950;
  background: none;
  color: #07100d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 22px 48px rgba(8, 17, 14, 0.12);
  animation: homeRise 520ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.home-hero-copy h1 span {
  display: inline;
}

.home-hero-copy p:last-child {
  color: rgba(7, 16, 13, 0.72);
  font-size: clamp(15px, 1.5vw, 20px);
}

.home-product-grid {
  width: min(900px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.home-product-card {
  min-height: 178px;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  box-shadow: 0 24px 68px rgba(8, 9, 8, 0.12);
}

.home-product-light {
  background: rgba(255, 255, 255, 0.82);
}

.home-product-name {
  font-size: clamp(40px, 4.2vw, 58px);
  letter-spacing: 0;
}

.home-brand-floor {
  margin-top: 20px;
  padding: 12px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-brand-strip {
  width: min(1020px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 42px;
}

.home-brand-item img {
  max-width: 132px;
  max-height: 42px;
  opacity: 0.72;
}

.home-brand-item img[src*="aito-word.svg"],
.home-brand-item img[src*="onvo-wordmark.svg"],
.home-brand-item img[src*="firefly.svg"] {
  max-width: 116px;
}

.site-shell {
  width: min(1180px, calc(100% - 36px));
}

.top-nav {
  justify-content: center;
}

.page-title {
  text-align: center;
}

.page-title p {
  margin-left: auto;
  margin-right: auto;
}

.info-panel,
.notice-section,
.mini-card,
.vehicle-matrix-panel,
.quote-card,
.risk-panel,
.txd-calculator-panel {
  border-radius: var(--ui-radius);
  box-shadow: var(--ui-shadow-soft);
}

.info-panel h2,
.notice-section h2,
.vehicle-matrix-head h2,
.txd-calculator-head h2 {
  text-align: center;
}

.quote-card {
  border-radius: 26px;
}

.quote-card-header {
  padding-top: 30px;
  padding-bottom: 30px;
}

.quote-title-block {
  text-align: center;
}

.quote-title-block p {
  margin-left: auto;
  margin-right: auto;
}

.quote-tags {
  justify-content: center;
}

.quote-total-block {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 52px rgba(8, 17, 14, 0.18);
}

.quote-money-grid {
  gap: 14px;
  background: transparent !important;
}

.quote-money-item {
  border: 1px solid rgba(8, 17, 14, 0.1) !important;
  background: #ffffff !important;
  color: #07100d !important;
  box-shadow: 0 12px 34px rgba(8, 17, 14, 0.06);
}

.quote-money-item::before,
.quote-money-item::after {
  display: none !important;
}

.quote-money-item span {
  color: #53645e !important;
}

.quote-money-item input,
.quote-option select,
.quote-option input {
  font-weight: 850;
}

.quote-money-item input {
  color: #07100d !important;
  opacity: 1 !important;
}

.quote-money-item input::placeholder {
  color: rgba(0, 132, 90, 0.42) !important;
}

.quote-money-output input,
#activityAmount[readonly] {
  color: #00845a !important;
}

.vehicle-matrix-head {
  text-align: center;
}

.vehicle-matrix-head > div,
.vehicle-matrix-head strong {
  margin-left: auto;
  margin-right: auto;
}

.vehicle-matrix-row > div {
  line-height: 1.65;
}

.txd-calculator-frame {
  width: 100%;
  background: transparent;
}

@keyframes homeFastScan {
  to {
    background-position: 0 0, 155% 0;
  }
}

@keyframes homeTitleCharge {
  from {
    background-position: 140% 0;
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    background-position: 42% 0;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .home-hero::before {
    animation-duration: 900ms;
    opacity: 0.7;
  }

  .home-product-grid {
    width: min(560px, 100%);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 18px, 560px);
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-nav a,
  .top-nav button {
    min-height: 38px;
    font-size: 12px;
  }

  .page-title h1 {
    font-size: clamp(38px, 12vw, 46px);
  }

  .info-table strong {
    font-size: 15px;
  }

  .quote-card-header {
    padding: 20px 15px;
    gap: 14px;
  }

  .quote-money-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .quote-money-item,
  .quote-option {
    border-radius: 14px;
  }

  .quote-money-item {
    min-height: 94px;
    padding: 11px;
  }

  .quote-money-item input {
    min-width: 0;
    font-size: 18px;
  }

  .quote-option {
    padding: 12px;
  }

  .vehicle-matrix-panel {
    padding: 14px;
  }

  .txd-calculator-panel {
    padding: 10px !important;
  }
}

@media (max-width: 560px) {
  .home-hero {
    border-radius: 24px;
  }

  .home-hero-copy h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .home-hero-copy h1 span {
    display: block;
  }

  .home-product-card {
    min-height: 128px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  }

  .home-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
  }

  .home-brand-item img {
    max-width: 128px;
    max-height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .home-hero-copy h1 {
    animation: none;
  }
}
/* final whole-site design pass end */

/* latest requested homepage image and title tune start */
.home-hero-media {
  object-position: center 90%;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.02);
}

.home-hero-wash {
  background:
    linear-gradient(180deg, rgba(248, 252, 250, 0.86) 0%, rgba(248, 252, 250, 0.5) 45%, rgba(248, 252, 250, 0.82) 100%),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.62) 74%);
}

.home-hero-copy h1 {
  background: none !important;
  color: #07100d !important;
  -webkit-text-fill-color: #07100d;
}

.home-hero-copy h1 span {
  color: inherit;
}

@media (max-width: 560px) {
  .home-hero-media {
    object-position: center 86%;
  }
}
/* latest requested homepage image and title tune end */

/* mini-program mobile trial start */
@media (max-width: 760px) {
  html {
    background: #f5f7f6;
  }

  body {
    -webkit-tap-highlight-color: transparent;
  }

  body.home-redesign {
    padding: 0;
    background: #f5f7f6;
  }

  .home-shell {
    width: 100%;
    max-width: 430px;
    padding: 0 10px 26px;
  }

  .home-hero {
    margin: 0 -10px;
    min-height: auto;
    gap: 16px;
    padding: calc(env(safe-area-inset-top) + 18px) 18px 18px;
    border: 0;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 10px 28px rgba(8, 17, 14, 0.08);
  }

  .home-hero::before,
  .home-product-card::after {
    display: none;
  }

  .home-hero-wash {
    background: rgba(246, 249, 247, 0.78);
  }

  .home-hero-copy {
    padding: 18px 0 8px;
  }

  .home-kicker {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(18, 217, 130, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    font-size: 12px;
  }

  .home-hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.08;
    text-shadow: none;
  }

  .home-hero-copy p:last-child {
    width: min(300px, 100%);
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .home-product-grid {
    gap: 10px;
  }

  .home-product-card {
    min-height: 112px;
    padding: 18px 16px;
    border-radius: 20px;
    clip-path: none;
    box-shadow: 0 8px 24px rgba(8, 17, 14, 0.08);
  }

  .home-product-name {
    font-size: 38px;
    line-height: 1;
  }

  .home-product-copy {
    font-size: 14px;
  }

  .home-product-meta {
    font-size: 11px;
  }

  .home-brand-floor {
    margin-top: 12px;
    padding: 14px 8px 28px;
  }

  .home-mini-entry {
    margin-top: 10px;
    padding: 0 6px calc(env(safe-area-inset-bottom) + 12px);
  }

  .home-mini-button {
    min-height: 58px;
    box-shadow: 0 10px 26px rgba(8, 17, 14, 0.12);
  }

  .home-brand-item {
    min-height: 46px;
  }

  body:not(.home-redesign) {
    background: #f5f7f6;
  }

  .site-shell {
    width: 100%;
    max-width: 430px;
    padding: calc(env(safe-area-inset-top) + 10px) 10px 28px;
  }

  .top-nav {
    position: sticky;
    top: calc(env(safe-area-inset-top) + 8px);
    z-index: 20;
    width: fit-content;
    max-width: calc(100% - 20px);
    margin: 0 auto 10px;
    padding: 5px;
    border: 1px solid rgba(8, 17, 14, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(8, 17, 14, 0.08);
  }

  .top-nav a,
  .top-nav button {
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    font-size: 12px;
  }

  .nav-password-link {
    background: #07100d !important;
  }

  .page-title {
    padding: 18px 6px 14px;
  }

  .page-title h1 {
    margin: 6px 0 8px;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.06;
  }

  .page-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .latest-notice,
  .info-panel,
  .notice-section,
  .mini-card,
  .vehicle-matrix-panel,
  .quote-card,
  .risk-panel,
  .txd-calculator-panel {
    border-radius: 18px;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(8, 17, 14, 0.07);
  }

  .latest-notice {
    margin: 0 0 12px;
    padding: 13px 14px 13px 16px;
  }

  .latest-notice p {
    font-size: 13px;
    line-height: 1.55;
  }

  .quote-card-header {
    padding: 18px 14px;
  }

  .quote-total-block {
    border-radius: 16px;
    box-shadow: none;
  }

  .quote-money-item {
    min-height: 88px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(8, 17, 14, 0.05);
  }

  .quote-money-item input {
    font-size: 17px;
  }

  .quote-config {
    gap: 10px;
  }

  .quote-option {
    border-radius: 16px;
  }

  .quote-option select,
  .quote-option input {
    min-height: 42px;
  }

  .vehicle-matrix-head h2,
  .info-panel h2,
  .notice-section h2,
  .txd-calculator-head h2 {
    font-size: 24px;
    line-height: 1.18;
  }

  .vehicle-matrix {
    border-radius: 14px;
  }

  .risk-group {
    border-radius: 14px;
    background: #f8faf9;
  }

  .txd-calculator-frame {
    border-radius: 14px;
  }
}
/* mini-program mobile trial end */
