:root {
  --yellow: #ffd12d;
  --yellow-strong: #ffc400;
  --yellow-soft: #fff1b0;
  --ink: #101010;
  --muted: #5f5a4d;
  --paper: #fffaf0;
  --glass: rgba(255, 255, 255, 0.58);
  --line: rgba(16, 16, 16, 0.1);
  --shadow: 0 24px 70px rgba(52, 42, 0, 0.16);
  --radius: 8px;
}

/* Recycler v2: design-draft reproduction */
.recycler-v2-main {
  position: relative;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 209, 45, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 220, 0.56), rgba(255, 255, 255, 0.72) 18%, rgba(255, 247, 219, 0.44) 100%);
}

.recycler-v2-main .section-pad {
  padding-top: 30px;
  padding-bottom: 30px;
}

.recycler-v2-hero {
  padding-top: 28px;
  padding-bottom: 22px;
}

.recycler-v2-main .recycler-v2-hero {
  padding-top: 28px;
  padding-bottom: 22px;
}

.recycler-v2-hero-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.76);
}

.recycler-v2-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 231, 0.96) 0%, rgba(255, 250, 231, 0.9) 31%, rgba(255, 250, 231, 0.5) 52%, rgba(255, 250, 231, 0.05) 77%),
    radial-gradient(circle at 16% 76%, rgba(255, 209, 45, 0.36), transparent 31%);
}

.recycler-v2-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.recycler-v2-hero-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 58%);
  padding: 100px 0 0 58px;
}

.recycler-v2-hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
}

.recycler-v2-hero-copy p {
  max-width: 560px;
  margin: 0 0 34px;
  color: #2f2a1b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.82;
}

.recycler-v2-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.secondary-btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: #171717;
  font-weight: 900;
  backdrop-filter: blur(16px);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.76), 8px 8px 22px rgba(70, 55, 0, 0.08);
}

.recycler-v2-hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 0 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 250, 236, 0.7);
  backdrop-filter: blur(20px);
}

.recycler-v2-hero-strip span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #504733;
  font-size: 14px;
  font-weight: 900;
}

.recycler-v2-hero-strip img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: contain;
}

.recycler-v2-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.recycler-v2-head {
  margin-bottom: 24px;
}

.recycler-v2-center-head {
  text-align: center;
}

.recycler-v2-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
}

.recycler-v2-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow-strong);
  transform: translateX(-50%);
}

.recycler-v2-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.recycler-v2-card {
  min-height: 186px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 209, 45, 0.12)),
    rgba(255, 255, 255, 0.52);
}

.recycler-v2-card img {
  width: 104px;
  height: 96px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 8px 8px 20px rgba(69, 54, 0, 0.1);
}

.recycler-v2-card h3,
.recycler-v2-reason-list h3,
.recycler-v2-process h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.recycler-v2-card p,
.recycler-v2-reason-list p,
.recycler-v2-process p,
.recycler-v2-apply-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.recycler-v2-card,
.recycler-v2-reason-list article,
.recycler-v2-rights-col span,
.recycler-v2-process article,
.recycler-v2-form label {
  min-width: 0;
}

.recycler-v2-card h3,
.recycler-v2-card p,
.recycler-v2-reason-list h3,
.recycler-v2-reason-list p,
.recycler-v2-process h3,
.recycler-v2-process p,
.recycler-v2-rights-col span,
.recycler-v2-apply-copy h2,
.recycler-v2-apply-copy p {
  overflow-wrap: anywhere;
}

.recycler-v2-why {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  gap: 32px;
}

.recycler-v2-why-visual {
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.recycler-v2-main .recycler-v2-why-visual {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.recycler-v2-why-visual img,
.recycler-v2-rights-visual img,
.recycler-v2-apply-copy img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.recycler-v2-reason-list {
  display: grid;
  gap: 12px;
}

.recycler-v2-reason-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 12px 12px 28px rgba(68, 54, 0, 0.08), inset 1px 1px 0 rgba(255, 255, 255, 0.78);
}

.recycler-v2-reason-list img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
}

.recycler-v2-rights {
  display: grid;
  grid-template-columns: 0.9fr 1.22fr 0.9fr;
  align-items: center;
  gap: 30px;
}

.recycler-v2-rights-col {
  display: grid;
  gap: 22px;
}

.recycler-v2-rights-col span {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  font-weight: 900;
  box-shadow: 12px 12px 28px rgba(68, 54, 0, 0.08), inset 1px 1px 0 rgba(255, 255, 255, 0.78);
}

.recycler-v2-rights-col span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  border-top: 2px dashed var(--yellow-strong);
}

.recycler-v2-rights-col:first-child span::after {
  right: -39px;
}

.recycler-v2-rights-col:last-child span::after {
  left: -39px;
}

.recycler-v2-rights-col img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
}

.recycler-v2-rights-visual {
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.recycler-v2-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.recycler-v2-process article {
  position: relative;
  min-height: 286px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.62);
}

.recycler-v2-process article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  width: 28px;
  height: 20px;
  background: var(--yellow-strong);
  clip-path: polygon(0 34%, 66% 34%, 66% 0, 100% 50%, 66% 100%, 66% 66%, 0 66%);
  transform: translateY(-50%);
}

.recycler-v2-process b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow-strong);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 8px 8px 20px rgba(68, 54, 0, 0.12);
}

.recycler-v2-process img {
  width: 82px;
  height: 82px;
  display: block;
  margin: 18px 0 16px;
  border-radius: 8px;
  object-fit: contain;
}

.recycler-v2-process p {
  font-size: 14px;
  line-height: 1.72;
}

.recycler-v2-apply-section {
  padding-top: 26px;
  padding-bottom: 42px;
}

.recycler-v2-main .recycler-v2-apply-section {
  padding-top: 26px;
  padding-bottom: 42px;
}

.recycler-v2-apply {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 44px 48px;
  background:
    linear-gradient(135deg, rgba(255, 209, 45, 0.58), rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.54);
}

.recycler-v2-apply-copy h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.12;
}

.recycler-v2-apply-copy p {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: 17px;
}

.recycler-v2-apply-copy img {
  width: min(420px, 100%);
  aspect-ratio: 16 / 9;
  padding: 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.78), 12px 12px 30px rgba(68, 54, 0, 0.1);
}

.recycler-v2-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
}

.recycler-v2-form label {
  display: grid;
  gap: 8px;
  color: #2f2a1b;
  font-weight: 900;
}

.recycler-v2-form input,
.recycler-v2-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 16, 16, 0.13);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.74);
  color: #111;
  font: inherit;
}

.recycler-v2-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.recycler-v2-form .form-wide {
  grid-column: 1 / -1;
}

.recycler-v2-form .primary-btn {
  border: 0;
  justify-content: center;
}

@media (max-width: 1180px) {
  .recycler-v2-hero-copy {
    width: min(620px, 56%);
    padding-left: 40px;
  }

  .recycler-v2-hero-strip {
    padding: 0 36px;
  }

  .recycler-v2-advantage-grid,
  .recycler-v2-rights,
  .recycler-v2-apply {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recycler-v2-rights {
    align-items: stretch;
  }

  .recycler-v2-rights-visual {
    grid-row: span 2;
  }

  .recycler-v2-rights-col span::after {
    display: none;
  }

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

  .recycler-v2-process article:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .recycler-v2-hero-card {
    min-height: auto;
    padding: 28px;
  }

  .recycler-v2-hero-card::before {
    display: none;
  }

  .recycler-v2-hero-image {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border-radius: 8px;
    object-position: center;
  }

  .recycler-v2-hero-copy {
    width: 100%;
    padding: 0;
  }

  .recycler-v2-hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
  }

  .recycler-v2-why,
  .recycler-v2-rights,
  .recycler-v2-apply {
    grid-template-columns: 1fr;
  }

  .recycler-v2-rights-visual {
    grid-row: auto;
  }

  .recycler-v2-process article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .recycler-v2-main {
    overflow-x: hidden;
  }

  .recycler-v2-hero {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .recycler-v2-hero-card,
  .recycler-v2-apply {
    padding: 16px;
  }

  .recycler-v2-hero-copy h1,
  .recycler-v2-apply-copy h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .recycler-v2-hero-copy p,
  .recycler-v2-card p,
  .recycler-v2-reason-list p,
  .recycler-v2-process p,
  .recycler-v2-apply-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .recycler-v2-hero-strip,
  .recycler-v2-advantage-grid,
  .recycler-v2-process,
  .recycler-v2-form {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .recycler-v2-section,
  .recycler-v2-apply-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .recycler-v2-card,
  .recycler-v2-reason-list article {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 18px;
  }

  .recycler-v2-card img {
    width: 78px;
    height: 72px;
  }

  .recycler-v2-rights-col span {
    border-radius: 8px;
  }

  .recycler-v2-process article {
    min-height: auto;
    padding: 20px;
  }

  .recycler-v2-form {
    padding: 18px;
  }

  .recycler-v2-form .form-wide {
    grid-column: 1;
  }

  .recycler-v2-main h1,
  .recycler-v2-main h2,
  .recycler-v2-main h3,
  .recycler-v2-main p,
  .recycler-v2-main span,
  .recycler-v2-main label {
    white-space: normal;
    word-break: break-all;
  }
}

/* Visual-match density pass: selected pale-blue technology concept */
@media (min-width: 981px) {
  body.home-page .pain-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  body.home-page .pain-section .section-head,
  body.home-page .home-solution-section .section-head,
  body.home-page #academy .section-head,
  body.home-page .case-section .section-head,
  body.home-page .partner-section .section-head {
    margin-bottom: 20px;
  }

  body.home-page .section-head h2,
  body.home-page .home-section-head h2,
  body.home-page .intro-copy h2 {
    font-size: 32px;
  }

  body.home-page .home-section-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  body.home-page .home-pain-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  body.home-page .home-pain-grid .issue-card {
    min-height: 166px;
    padding: 15px 13px;
  }

  body.home-page .home-pain-grid .asset-icon {
    width: 48px;
    height: 48px;
    padding: 5px;
  }

  body.home-page .home-pain-grid h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    line-height: 1.3;
  }

  body.home-page .home-pain-grid p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.home-page .home-solution-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  body.home-page .home-solution-showcase {
    gap: 14px;
  }

  body.home-page .home-solution-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
  }

  body.home-page .home-solution-tile {
    min-height: 112px;
    padding: 10px;
    grid-template-columns: 26px 1fr;
    grid-template-rows: 48px auto;
    gap: 6px;
  }

  body.home-page .home-solution-tile b {
    width: 26px;
    height: 24px;
    font-size: 10px;
  }

  body.home-page .home-solution-tile .asset-icon {
    width: 52px;
    height: 46px;
  }

  body.home-page .home-solution-tile h3 {
    font-size: 12px;
    line-height: 1.35;
  }

  body.home-page .solution-visual-panel {
    min-height: 248px;
    padding: 12px 16px 54px;
  }

  body.home-page .solution-visual-panel img {
    height: 188px;
  }

  body.home-page .solution-visual-caption {
    left: 16px;
    right: 16px;
    bottom: 12px;
    min-height: 38px;
    padding: 8px 14px;
  }

  body.home-page .intro-section {
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  body.home-page .video-screen {
    min-height: 276px;
  }

  body.home-page .intro-copy p {
    margin: 8px 0 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  body.home-page .intro-stats span {
    min-height: 64px;
    padding: 10px;
    font-size: 12px;
  }

  body.home-page .intro-stats b {
    font-size: 18px;
  }

  body.home-page .map-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  body.home-page .map-section .section-head {
    margin-bottom: 18px;
  }

  body.home-page .map-card {
    min-height: 302px;
    padding: 18px;
  }

  body.home-page .map-stats {
    gap: 10px;
  }

  body.home-page .map-stats span {
    min-height: 66px;
    padding: 12px;
    font-size: 12px;
  }

  body.home-page .map-stats b {
    font-size: 17px;
  }

  body.home-page #academy {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  body.home-page .article-card {
    padding: 10px 10px 14px;
  }

  body.home-page .article-thumb {
    height: 142px;
  }

  body.home-page .article-card h3 {
    margin: 12px 4px 5px;
    font-size: 17px;
  }

  body.home-page .article-card p {
    margin: 0 4px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.home-page .case-section {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  body.home-page .case-image {
    height: 210px;
  }

  body.home-page .case-content {
    padding: 14px 16px 16px;
  }

  body.home-page .case-card h3 {
    margin-bottom: 5px;
    font-size: 20px;
  }

  body.home-page .case-card p {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.home-page .partner-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  body.home-page .partner-row span {
    min-height: 70px;
  }

  body.home-page .partner-row img {
    max-height: 42px;
  }
}

@media (max-width: 980px) {
  body.home-page .home-pain-grid,
  body.home-page .home-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .home-pain-grid .issue-card {
    min-height: 178px;
    padding: 16px;
  }

  body.home-page .home-pain-grid .asset-icon {
    width: 50px;
    height: 50px;
  }

  body.home-page .home-pain-grid h3 {
    margin: 10px 0 6px;
    font-size: 17px;
  }

  body.home-page .home-pain-grid p {
    font-size: 12px;
    line-height: 1.55;
  }

  body.home-page .home-solution-tile {
    min-height: 112px;
    padding: 12px;
  }

  body.home-page .solution-visual-panel img {
    object-fit: contain;
  }
}

@media (max-width: 560px) {
  .recycler-v2-card,
  .recycler-v2-reason-list article {
    grid-template-columns: 1fr;
  }

  .recycler-v2-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recycler-v2-actions .primary-btn,
  .recycler-v2-actions .secondary-btn {
    width: 100%;
  }
}

/* Contact page */
.contact-main {
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 209, 45, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 220, 0.54), rgba(255, 255, 255, 0.72) 20%, rgba(255, 247, 219, 0.48));
}

.contact-main .section-pad {
  padding-top: 34px;
  padding-bottom: 34px;
}

.contact-hero {
  padding-top: 28px;
}

.contact-hero-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 250, 231, 0.96), rgba(255, 250, 231, 0.86) 34%, rgba(255, 250, 231, 0.32) 62%, rgba(255, 250, 231, 0));
}

.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 56%);
  padding: 96px 0 0 58px;
}

.contact-hero-copy h1 {
  margin: 14px 0 12px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
}

.contact-hero-copy h2 {
  max-width: 720px;
  margin: 16px 0 18px;
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1.16;
}

.contact-hero-copy p,
.contact-section-head p,
.contact-consult-copy p,
.contact-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.contact-section-head {
  margin-bottom: 22px;
}

.contact-section-head h2,
.contact-consult-copy h2,
.contact-cta h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
}

.contact-section-head h2::after,
.contact-consult-copy h2::after,
.contact-cta h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow-strong);
}

.contact-map-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 20px;
  align-items: stretch;
}

.contact-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 45%, rgba(255, 196, 0, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 239, 166, 0.38));
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-road {
  position: absolute;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.52);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.48);
}

.road-a {
  left: -8%;
  right: 14%;
  top: 42%;
  transform: rotate(-8deg);
}

.road-b {
  left: 22%;
  right: -12%;
  top: 62%;
  transform: rotate(13deg);
}

.road-c {
  left: 52%;
  width: 16px;
  top: -10%;
  height: 122%;
  transform: rotate(24deg);
}

.map-zone {
  position: absolute;
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #312a16;
  font-weight: 900;
  box-shadow: 8px 8px 20px rgba(66, 52, 0, 0.1);
}

.zone-a {
  left: 8%;
  top: 16%;
}

.zone-b {
  right: 10%;
  bottom: 18%;
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 44%;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: var(--yellow-strong);
  border: 8px solid #fff;
  box-shadow: 0 18px 40px rgba(88, 68, 0, 0.22);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #111;
}

.map-label {
  position: absolute;
  left: 52%;
  top: calc(44% + 48px);
  width: min(330px, 78%);
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%);
  box-shadow: 10px 10px 28px rgba(66, 52, 0, 0.12);
}

.map-label strong {
  font-size: 20px;
}

.contact-address-card,
.contact-info-card,
.contact-qr-card,
.contact-consult,
.contact-cta {
  min-width: 0;
}

.contact-address-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
}

.contact-card-icon,
.contact-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow-strong);
  color: #111;
  font-weight: 900;
  box-shadow: 8px 8px 20px rgba(66, 52, 0, 0.12);
}

.contact-address-card h3,
.contact-qr-card h3 {
  margin: 0;
  font-size: 22px;
}

.contact-address-card p,
.contact-qr-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

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

.contact-info-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.contact-info-card small {
  color: var(--muted);
  font-weight: 900;
}

.contact-info-card strong {
  font-size: 18px;
  line-height: 1.45;
}

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

.contact-qr-card {
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
}

.contact-qr-card img {
  width: 132px;
  height: 132px;
  display: block;
  margin: 0 auto 16px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-consult {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 34px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 209, 45, 0.28), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.56);
}

.contact-tip {
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 209, 45, 0.22);
  color: #2c2719;
  font-weight: 800;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.74);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2f2a1b;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 16, 16, 0.13);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
  font: inherit;
}

.contact-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form .form-wide {
  grid-column: 1 / -1;
}

.contact-form .primary-btn,
.contact-cta .primary-btn {
  border: 0;
  justify-content: center;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 209, 45, 0.28)),
    rgba(255, 255, 255, 0.56);
}

.contact-cta p {
  max-width: 780px;
}

@media (max-width: 980px) {
  .contact-hero-card {
    min-height: auto;
    padding: 24px;
  }

  .contact-hero-card::before {
    display: none;
  }

  .contact-hero-image {
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto;
    margin-bottom: 18px;
    border-radius: 8px;
  }

  .contact-hero-copy {
    width: 100%;
    padding: 0;
  }

  .contact-map-layout,
  .contact-consult {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .contact-main .section-pad {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .contact-hero {
    padding-top: 22px;
  }

  .contact-hero-card,
  .contact-consult,
  .contact-cta {
    padding: 16px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .contact-hero-copy h2,
  .contact-section-head h2,
  .contact-consult-copy h2,
  .contact-cta h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .contact-map {
    min-height: 360px;
  }

  .contact-info-grid,
  .contact-qr-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .form-wide {
    grid-column: 1;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 209, 45, 0.42), transparent 28%),
    linear-gradient(135deg, #fff8dc 0%, #fffdf6 44%, #ffe073 100%);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

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

img {
  max-width: 100%;
}

.is-hidden {
  display: none !important;
}

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 72%);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(22px);
  box-shadow: 12px 12px 34px rgba(72, 57, 0, 0.11), inset 1px 1px 0 rgba(255, 255, 255, 0.72);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 128px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 30px);
  color: rgba(16, 16, 16, 0.82);
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
  position: relative;
}

.hero {
  min-height: 760px;
  padding-top: 54px;
}

.home-hero-section {
  width: min(1240px, calc(100% - 32px));
  min-height: 0;
  padding: 28px 0 42px;
}

.hero-bg-grid {
  position: absolute;
  inset: 8px -16px 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 14%, rgba(255, 255, 255, 0.94), transparent 23%),
    linear-gradient(120deg, rgba(255, 209, 45, 0.9), rgba(255, 255, 255, 0.48) 46%, rgba(255, 229, 98, 0.72)),
    repeating-linear-gradient(45deg, rgba(16, 16, 16, 0.03) 0 1px, transparent 1px 18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), var(--shadow);
  z-index: -1;
}

.carousel-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
}

.tab {
  border: 0;
  border-radius: 7px;
  padding: 10px 18px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.7), inset -3px -3px 7px rgba(162, 128, 0, 0.18);
}

.slides {
  position: relative;
  margin-top: 0;
}

.slide {
  display: none;
  position: relative;
  padding: 0;
}

.slide.is-active {
  display: block;
}

.design-banner-image {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(52, 42, 0, 0.16), inset 1px 1px 0 rgba(255, 255, 255, 0.74);
}

.banner-hotspot {
  position: absolute;
  z-index: 5;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.saas-join-hotspot {
  left: 5.2%;
  top: 58%;
  width: 17%;
  height: 13%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 8px;
  border-radius: 99px;
  background: var(--yellow-strong);
  box-shadow: 0 0 0 5px rgba(255, 196, 0, 0.18);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.subtitle-stack {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin-bottom: 32px;
}

.subtitle-stack p,
.lead {
  margin: 0;
  color: #3b3529;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
}

.hero-value-list {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-value-list li {
  position: relative;
  padding-left: 30px;
  color: #2e2b22;
  font-size: 19px;
  font-weight: 900;
}

.hero-value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border: 4px solid #111;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 196, 0, 0.18);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 16, 16, 0.12);
  cursor: pointer;
  font-weight: 900;
}

.primary-btn {
  background: #111;
  color: var(--yellow);
  box-shadow: 7px 7px 0 rgba(255, 196, 0, 0.78), 0 18px 34px rgba(0, 0, 0, 0.16);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.5);
  color: #171717;
  backdrop-filter: blur(14px);
}

.settle-preview {
  width: min(210px, 100%);
  margin-top: 18px;
  padding: 12px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 14px 14px 28px rgba(62, 50, 0, 0.13), inset 1px 1px 0 rgba(255, 255, 255, 0.76);
}

.home-mini-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 430px;
  margin-top: 24px;
}

.home-mini-points span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.58);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.76);
}

.settle-preview button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 209, 45, 0.42);
  color: #111;
  cursor: pointer;
  font-weight: 900;
}

.saas-stage {
  position: relative;
  min-height: 485px;
  padding: 18px 0;
}

.home-hero-visual {
  position: absolute;
  right: 0;
  top: 26px;
  width: min(680px, 100%);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 26px 70px rgba(52, 42, 0, 0.18), inset 1px 1px 0 rgba(255, 255, 255, 0.7);
}

.glass-card,
.solution-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow), inset 1px 1px 0 rgba(255, 255, 255, 0.74);
}

.dashboard-card {
  position: absolute;
  right: 20px;
  top: 74px;
  width: min(430px, 76%);
  padding: 24px;
  transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-top strong {
  font-size: 30px;
}

.dashboard-top span,
.metric-row span,
.scan-panel p {
  color: var(--muted);
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-row div {
  padding: 14px 12px;
  border-radius: 8px;
  background: rgba(255, 209, 45, 0.48);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.66), inset -3px -3px 8px rgba(142, 111, 0, 0.18);
}

.metric-row b {
  display: block;
  font-size: 25px;
}

.chart-lines {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.chart-lines i {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, #111 var(--w), rgba(16, 16, 16, 0.08) var(--w));
}

.chart-lines i:nth-child(1) { --w: 76%; }
.chart-lines i:nth-child(2) { --w: 54%; }
.chart-lines i:nth-child(3) { --w: 88%; }
.chart-lines i:nth-child(4) { --w: 68%; }

.scan-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
}

.scan-panel span {
  width: 48px;
  height: 48px;
  border: 4px solid #111;
  border-radius: 8px;
  background: var(--yellow);
  position: relative;
}

.scan-panel span::after {
  content: "";
  position: absolute;
  inset: 18px -8px auto;
  height: 4px;
  background: #111;
}

.hero-mascot {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(330px, 45%);
  height: auto;
  filter: drop-shadow(0 26px 22px rgba(0, 0, 0, 0.18));
  z-index: 2;
}

.mascot-body {
  position: absolute;
  left: 36px;
  top: 30px;
  width: 138px;
  height: 218px;
  border: 12px solid #111;
  border-radius: 32px;
  background: linear-gradient(145deg, #ffe86b, #ffc400);
  box-shadow: inset 10px 10px 18px rgba(255, 255, 255, 0.45), inset -12px -10px 22px rgba(121, 94, 0, 0.22);
}

.speaker {
  position: absolute;
  left: 42px;
  top: 14px;
  width: 52px;
  height: 12px;
  border-radius: 99px;
  background: #111;
}

.face {
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.face span {
  width: 15px;
  height: 28px;
  border-radius: 99px;
  background: #111;
}

.face span:nth-child(2) {
  width: 25px;
  height: 18px;
  border-radius: 0;
  background: none;
  border-left: 7px solid #111;
  border-bottom: 7px solid #111;
  transform: rotate(45deg);
  margin-top: 4px;
}

.face i {
  position: absolute;
  top: 44px;
  width: 46px;
  height: 24px;
  border-radius: 0 0 40px 40px;
  background: #111;
}

.button-dot {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111;
  transform: translateX(-50%);
}

.mascot-rays {
  position: absolute;
  right: 18px;
  top: 0;
  width: 54px;
  height: 56px;
}

.mascot-rays::before,
.mascot-rays::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 42px;
  border-radius: 99px;
  background: #111;
}

.mascot-rays::before {
  left: 9px;
  transform: rotate(-34deg);
}

.mascot-rays::after {
  right: 11px;
  transform: rotate(34deg);
}

.arm,
.leg {
  position: absolute;
  background: #111;
}

.arm {
  top: 130px;
  width: 18px;
  height: 76px;
  border-radius: 99px;
}

.arm-left {
  left: 18px;
  transform: rotate(34deg);
}

.arm-right {
  right: 18px;
  transform: rotate(-34deg);
}

.leg {
  bottom: 10px;
  width: 52px;
  height: 22px;
  border-radius: 99px;
}

.leg-left {
  left: 42px;
}

.leg-right {
  right: 42px;
}

.orbit-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 8px;
  color: #111;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-weight: 900;
  box-shadow: 12px 12px 24px rgba(47, 39, 0, 0.12), inset 1px 1px 0 rgba(255, 255, 255, 0.72);
}

.chip-a { left: 24px; top: 38px; }
.chip-b { right: 10px; top: 12px; }
.chip-c { left: 8px; top: 226px; }
.chip-d { right: 34px; bottom: 54px; }
.chip-e { left: 220px; bottom: 18px; }

.home-hero-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.home-hero-flow article {
  position: relative;
  min-height: 118px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 12px 12px 28px rgba(60, 48, 0, 0.12), inset 1px 1px 0 rgba(255, 255, 255, 0.76);
}

.home-hero-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  width: 32px;
  height: 20px;
  background: var(--yellow-strong);
  clip-path: polygon(0 36%, 68% 36%, 68% 0, 100% 50%, 68% 100%, 68% 64%, 0 64%);
  transform: translateY(-50%);
  z-index: 2;
}

.home-hero-flow img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.home-hero-flow h3 {
  margin: 0;
  font-size: 18px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.84);
  color: var(--yellow);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.hero-prev {
  left: -22px;
}

.hero-next {
  right: -22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 4;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.24);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: #111;
}

.meeting-slide .lead {
  max-width: 520px;
  margin-bottom: 30px;
}

.meeting-panel {
  padding: 18px;
}

.meeting-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.meeting-scene {
  position: relative;
  min-height: 350px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 58%),
    linear-gradient(135deg, #ffe169, #fff7d1);
}

.screen {
  position: absolute;
  left: 50%;
  top: 42px;
  width: 300px;
  height: 130px;
  transform: translateX(-50%);
  border: 8px solid #111;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.table {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: 470px;
  height: 110px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #111;
  box-shadow: inset 0 16px 0 rgba(255, 209, 45, 0.86);
}

.person {
  position: absolute;
  width: 52px;
  height: 82px;
  border-radius: 28px 28px 10px 10px;
  background: #111;
}

.person::before {
  content: "";
  position: absolute;
  left: 9px;
  top: -36px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  border: 5px solid #111;
}

.p1 { left: 88px; bottom: 92px; }
.p2 { right: 104px; bottom: 92px; }
.p3 { left: 206px; bottom: 42px; }
.p4 { right: 226px; bottom: 42px; }

.signup-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.58);
  outline: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-top: 12px;
}

.pain-grid,
.solution-grid,
.article-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.issue-card,
.solution-card,
.article-card,
.case-card {
  padding: 24px;
}

.issue-card p,
.solution-card p,
.article-card p,
.case-card p,
.intro-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.asset-icon {
  width: 84px;
  height: 84px;
  display: block;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 8px 8px 18px rgba(69, 54, 0, 0.12);
}

.solution-card .asset-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
}

.line-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: inline-block;
  border: 5px solid #111;
  background: var(--yellow);
  position: relative;
}

.phone-icon {
  border-radius: 12px;
}

.phone-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #111;
}

.price-icon {
  border-radius: 50%;
}

.price-icon::after {
  content: "¥";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
}

.rotate-icon {
  border-radius: 50%;
  border-style: dashed;
}

.shield-icon {
  clip-path: polygon(50% 0, 94% 16%, 84% 78%, 50% 100%, 16% 78%, 6% 16%);
}

.alt-band {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: rgba(255, 255, 255, 0.3);
}

.solution-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 209, 45, 0.26));
  box-shadow: 12px 12px 28px rgba(60, 48, 0, 0.12), -8px -8px 20px rgba(255, 255, 255, 0.58);
}

.solution-card b {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #111;
  color: var(--yellow);
}

.pain-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.home-solution-section {
  padding-top: 50px;
  padding-bottom: 52px;
}

.home-section-head {
  max-width: 880px;
  margin-bottom: 26px;
}

.home-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 48px);
}

.home-section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

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

.home-pain-grid .issue-card {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.7), rgba(255, 209, 45, 0.16)),
    rgba(255, 255, 255, 0.46);
  box-shadow: 14px 14px 32px rgba(60, 48, 0, 0.11), inset 1px 1px 0 rgba(255, 255, 255, 0.78);
}

.home-pain-grid .issue-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 209, 45, 0.18);
}

.home-pain-grid .asset-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.home-pain-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.home-pain-grid p {
  position: relative;
  z-index: 1;
  font-size: 15px;
}

.home-solution-showcase {
  display: grid;
  grid-template-columns: minmax(228px, 0.82fr) minmax(360px, 1.38fr) minmax(228px, 0.82fr);
  gap: 26px;
  align-items: center;
}

.home-solution-side {
  position: relative;
  display: grid;
  grid-template-rows: repeat(4, minmax(104px, 1fr));
  gap: 16px;
}

.home-solution-side::after {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  width: 22px;
  border-color: rgba(255, 196, 0, 0.62);
  border-style: dashed;
  pointer-events: none;
}

.solution-left::after {
  right: -26px;
  border-width: 2px 2px 2px 0;
  border-radius: 0 8px 8px 0;
}

.solution-right::after {
  left: -26px;
  border-width: 2px 0 2px 2px;
  border-radius: 8px 0 0 8px;
}

.solution-visual-panel {
  position: relative;
  min-height: 430px;
  padding: 18px 18px 86px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 209, 45, 0.18)),
    rgba(255, 255, 255, 0.48);
}

.solution-visual-panel img {
  width: 100%;
  height: 330px;
  min-height: 0;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.solution-visual-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.76);
}

.solution-visual-caption span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.solution-visual-caption b {
  font-size: 22px;
}

.home-solution-tile {
  position: relative;
  min-height: 104px;
  padding: 14px 16px 14px 58px;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 209, 45, 0.2));
}

.home-solution-tile::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  border-top: 2px dashed rgba(255, 196, 0, 0.68);
  opacity: 1;
}

.solution-left .home-solution-tile::after {
  right: -22px;
}

.solution-right .home-solution-tile::after {
  left: -22px;
}

.home-solution-tile .asset-icon {
  width: 86px;
  height: 76px;
  margin: 0;
  border-radius: 8px;
  object-fit: contain;
}

.home-solution-tile b {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: var(--yellow-strong);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.58), 0 10px 20px rgba(255, 196, 0, 0.22);
}

.home-solution-tile h3 {
  margin: 0;
  padding-right: 0;
  font-size: 17px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .home-solution-showcase {
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 18px;
  }

  .home-solution-side {
    gap: 12px;
  }

  .home-solution-side::after,
  .home-solution-tile::after {
    display: none;
  }

  .solution-visual-panel {
    min-height: 400px;
  }

  .solution-visual-panel img {
    height: 300px;
  }

  .home-solution-tile {
    min-height: 112px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    padding: 44px 12px 14px;
    text-align: center;
  }

  .home-solution-tile .asset-icon {
    width: 76px;
    height: 68px;
  }

  .home-solution-tile b {
    left: 12px;
    top: 12px;
    width: 30px;
    height: 30px;
    transform: none;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .home-solution-showcase {
    grid-template-columns: 1fr;
  }

  .solution-visual-panel {
    order: 1;
  }

  .solution-left {
    order: 2;
  }

  .solution-right {
    order: 3;
  }

  .home-solution-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .solution-visual-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .home-section-head h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .home-section-head p {
    font-size: 15px;
  }

  .home-pain-grid .issue-card {
    min-height: auto;
  }

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

  .solution-visual-panel {
    min-height: auto;
    padding: 10px;
  }

  .solution-visual-panel img {
    height: auto;
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .solution-visual-caption {
    position: static;
    margin-top: 10px;
  }
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 46px;
}

.video-card {
  padding: 18px;
}

.video-screen {
  min-height: 390px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 209, 45, 0.82), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(16, 16, 16, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px;
  overflow: hidden;
}

.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 209, 45, 0.08));
}

.video-screen button {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 5px solid #111;
  background: rgba(255, 255, 255, 0.64);
  z-index: 3;
}

.video-screen button::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 25px;
  border-left: 22px solid #111;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.phone-stack i {
  position: absolute;
  width: 118px;
  height: 192px;
  border-radius: 26px;
  border: 9px solid #111;
  background: rgba(255, 255, 255, 0.34);
}

.phone-stack i:nth-child(1) { left: 80px; bottom: 36px; transform: rotate(-12deg); }
.phone-stack i:nth-child(2) { right: 96px; top: 42px; transform: rotate(10deg); }
.phone-stack i:nth-child(3) { right: 190px; bottom: 28px; transform: rotate(-5deg); }

.intro-stats,
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.intro-stats span,
.case-metrics span,
.map-stats span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 209, 45, 0.45);
  font-weight: 800;
}

.intro-stats b,
.case-metrics b,
.map-stats b {
  font-size: 24px;
}

.map-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.china-map-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 20px 26px rgba(102, 80, 0, 0.18));
}

.map-stats {
  display: grid;
  gap: 14px;
}

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

.article-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(52, 42, 0, 0.2);
}

.academy-section {
  padding-top: 48px;
}

.academy-page,
.article-page {
  position: relative;
}

.academy-hero {
  min-height: 420px;
  display: grid;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 48px;
}

.academy-hero-copy {
  max-width: 760px;
}

.academy-hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.08;
}

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

.academy-head .section-head {
  margin-bottom: 0;
}

.academy-head .section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.academy-tabs,
.login-role-tabs,
.login-method-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
}

.academy-tabs button,
.login-role-tabs button,
.login-method-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 7px;
  padding: 0 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.academy-tabs button.is-active,
.login-role-tabs button.is-active,
.login-method-tabs button.is-active {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.7), inset -3px -3px 7px rgba(162, 128, 0, 0.18);
}

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

.academy-card {
  min-height: 176px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.academy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(52, 42, 0, 0.2);
}

.academy-card .article-thumb {
  height: 140px;
  margin: 0;
}

.academy-card-body {
  display: grid;
  align-content: center;
}

.academy-card-body h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.academy-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.article-tag {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 209, 45, 0.42);
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.article-tag.locked {
  background: #111;
  color: var(--yellow);
}

.academy-v2-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 209, 45, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 220, 0.5), rgba(255, 255, 255, 0.72) 20%, rgba(255, 247, 219, 0.42));
}

.academy-v2-page .section-pad {
  padding-top: 34px;
  padding-bottom: 34px;
}

.academy-v2-hero {
  padding-top: 28px;
}

.academy-v2-hero-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 38px 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 209, 45, 0.14)),
    rgba(255, 255, 255, 0.58);
}

.academy-v2-hero-copy h1 {
  max-width: 680px;
  margin: 16px 0 18px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.16;
}

.academy-v2-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.8;
}

.academy-v2-hero-visual {
  height: 330px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(52, 42, 0, 0.14);
}

.academy-v2-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.academy-v2-section {
  padding-top: 28px;
}

.academy-v2-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.academy-v2-title h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 48px);
}

.academy-v2-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow-strong);
}

.academy-v2-title p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.academy-v2-tabs {
  flex: 0 0 auto;
}

.academy-v2-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.academy-v2-card {
  position: relative;
  min-height: 438px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.academy-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(52, 42, 0, 0.2);
}

.academy-v2-card .article-thumb {
  width: 100%;
  height: 205px;
  margin: 0;
  border-radius: 0;
}

.academy-v2-card .article-thumb img {
  filter: saturate(1.02);
}

.academy-v2-card .academy-card-body {
  flex: 1;
  display: grid;
  align-content: start;
  padding: 22px;
}

.academy-v2-card .academy-card-body h3 {
  min-height: 64px;
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.academy-v2-card .academy-card-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.article-card-foot {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  color: #6b614b;
  font-size: 14px;
  font-weight: 900;
}

.article-card-foot span {
  color: #111;
}

.lock-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  display: none;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.academy-v2-card.is-locked {
  opacity: 0.58;
  filter: grayscale(0.9);
}

.academy-v2-card.is-locked:hover {
  transform: none;
}

.academy-v2-card.is-locked .lock-badge {
  display: inline-flex;
}

.academy-v2-card.is-locked .article-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.42);
}

.academy-v2-card.is-locked .article-card-foot span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .academy-v2-hero-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .academy-v2-hero-visual {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .academy-v2-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .academy-v2-tabs {
    width: 100%;
  }

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

@media (max-width: 760px) {
  .academy-v2-page .section-pad {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .academy-v2-hero {
    padding-top: 22px;
  }

  .academy-v2-hero-card {
    padding: 16px;
  }

  .academy-v2-hero-copy h1 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .academy-v2-hero-copy p,
  .academy-v2-card .academy-card-body p {
    font-size: 15px;
    line-height: 1.75;
  }

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

  .academy-v2-grid {
    grid-template-columns: 1fr;
  }

  .academy-v2-card {
    min-height: auto;
  }

  .academy-v2-card .article-thumb {
    height: 190px;
  }

  .academy-v2-card .academy-card-body h3 {
    min-height: auto;
  }
}

/* Final homepage proportions, kept last so legacy page rules cannot expand it. */
@media (min-width: 981px) {
  body.home-page .pain-section,
  body.home-page .home-solution-section,
  body.home-page .map-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  body.home-page #academy,
  body.home-page .case-section {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  body.home-page .partner-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  body.home-page .pain-section .section-head,
  body.home-page .home-solution-section .section-head,
  body.home-page #academy .section-head,
  body.home-page .case-section .section-head,
  body.home-page .partner-section .section-head {
    margin-bottom: 20px;
  }

  body.home-page .section-head h2,
  body.home-page .home-section-head h2,
  body.home-page .intro-copy h2 {
    font-size: 32px;
  }

  body.home-page .home-section-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  body.home-page .home-pain-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  body.home-page .home-pain-grid .issue-card {
    min-height: 166px;
    padding: 15px 13px;
  }

  body.home-page .home-pain-grid .asset-icon {
    width: 48px;
    height: 48px;
    padding: 5px;
  }

  body.home-page .home-pain-grid h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    line-height: 1.3;
  }

  body.home-page .home-pain-grid p,
  body.home-page .article-card p,
  body.home-page .case-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  body.home-page .home-pain-grid p {
    font-size: 11px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
  }

  body.home-page .home-solution-showcase {
    gap: 14px;
  }

  body.home-page .home-solution-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
  }

  body.home-page .home-solution-tile {
    min-height: 112px;
    padding: 10px;
    grid-template-columns: 26px 1fr;
    grid-template-rows: 48px auto;
    gap: 6px;
  }

  body.home-page .home-solution-tile b {
    width: 26px;
    height: 24px;
    font-size: 10px;
  }

  body.home-page .home-solution-tile .asset-icon {
    width: 52px;
    height: 46px;
  }

  body.home-page .home-solution-tile h3 {
    font-size: 12px;
    line-height: 1.35;
  }

  body.home-page .solution-visual-panel {
    min-height: 248px;
    padding: 12px 16px 54px;
  }

  body.home-page .solution-visual-panel img {
    height: 188px;
  }

  body.home-page .solution-visual-caption {
    left: 16px;
    right: 16px;
    bottom: 12px;
    min-height: 38px;
    padding: 8px 14px;
  }

  body.home-page .intro-section {
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  body.home-page .video-screen {
    min-height: 276px;
  }

  body.home-page .intro-copy p {
    margin: 8px 0 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  body.home-page .intro-stats span {
    min-height: 64px;
    padding: 10px;
    font-size: 12px;
  }

  body.home-page .intro-stats b {
    font-size: 18px;
  }

  body.home-page .map-section .section-head {
    margin-bottom: 18px;
  }

  body.home-page .map-card {
    min-height: 302px;
    padding: 18px;
  }

  body.home-page .map-stats {
    gap: 10px;
  }

  body.home-page .map-stats span {
    min-height: 66px;
    padding: 12px;
    font-size: 12px;
  }

  body.home-page .map-stats b {
    font-size: 17px;
  }

  body.home-page .article-card {
    padding: 10px 10px 14px;
  }

  body.home-page .article-thumb {
    height: 142px;
  }

  body.home-page .article-card h3 {
    margin: 12px 4px 5px;
    font-size: 17px;
  }

  body.home-page .article-card p {
    margin: 0 4px;
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
  }

  body.home-page .case-image {
    height: 210px;
  }

  body.home-page .case-content {
    padding: 14px 16px 16px;
  }

  body.home-page .case-card h3 {
    margin-bottom: 5px;
    font-size: 20px;
  }

  body.home-page .case-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
  }

  body.home-page .partner-row span {
    min-height: 70px;
  }

  body.home-page .partner-row img {
    max-height: 42px;
  }
}

@media (max-width: 980px) {
  body.home-page .home-pain-grid,
  body.home-page .home-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .home-pain-grid .issue-card {
    min-height: 178px;
    padding: 16px;
  }

  body.home-page .home-pain-grid .asset-icon {
    width: 50px;
    height: 50px;
  }

  body.home-page .home-pain-grid h3 {
    margin: 10px 0 6px;
    font-size: 17px;
  }

  body.home-page .home-pain-grid p {
    font-size: 12px;
    line-height: 1.55;
  }

  body.home-page .home-solution-tile {
    min-height: 112px;
    padding: 12px;
  }

  body.home-page .solution-visual-panel img {
    object-fit: contain;
  }
}

/* Full-site 2026 technology theme */
body.site-tech-page {
  --tech-blue: #1769e0;
  --tech-blue-strong: #0f57c8;
  --tech-blue-soft: #eaf5ff;
  --tech-blue-pale: #f5faff;
  --tech-line: #d4e6f8;
  --tech-ink: #101828;
  --tech-muted: #5a6b7f;
  color: var(--tech-ink);
  background: #f7fbff;
}

body.site-tech-page .site-shell {
  background:
    linear-gradient(rgba(23, 105, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.035) 1px, transparent 1px),
    #f8fbff;
  background-size: 48px 48px;
}

body.site-tech-page .site-shell::before {
  display: none;
}

body.site-tech-page .topbar {
  top: 0;
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid var(--tech-line);
  border-radius: 0;
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 10px 32px rgba(42, 91, 145, 0.06);
}

body.site-tech-page .brand {
  width: auto;
  min-height: 54px;
  gap: 10px;
}

body.site-tech-page .brand-icon {
  position: relative;
  width: 46px;
  height: 50px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--yellow);
}

body.site-tech-page .brand-icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 150px;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
  transform: translate(-5px, -30px);
}

body.site-tech-page .brand-wordmark {
  display: grid;
  gap: 3px;
  color: #111;
}

body.site-tech-page .brand-wordmark strong {
  font-size: 22px;
  line-height: 1;
}

body.site-tech-page .brand-wordmark small {
  font-size: 10px;
  font-weight: 700;
}

body.site-tech-page .nav-links {
  gap: 30px;
  color: #202938;
  font-size: 15px;
  font-weight: 700;
}

body.site-tech-page .nav-links a::after {
  height: 2px;
  bottom: 2px;
  background: var(--tech-blue);
}

body.site-tech-page .nav-links .nav-login {
  min-width: 76px;
  padding: 10px 20px;
  border: 1px solid #eab500;
  border-radius: 6px;
  background: var(--yellow-strong);
  color: #171717;
  text-align: center;
  box-shadow: 0 8px 18px rgba(255, 196, 0, 0.18);
}

body.site-tech-page .nav-links .nav-login::after {
  display: none;
}

body.site-tech-page .section-pad,
body.site-tech-page .recycler-v2-main .section-pad,
body.site-tech-page .retailer-v2-main .section-pad,
body.site-tech-page .academy-v2-page .section-pad,
body.site-tech-page .contact-main .section-pad {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
  padding-top: 52px;
  padding-bottom: 52px;
}

body.site-tech-page .recycler-v2-main,
body.site-tech-page .retailer-v2-main,
body.site-tech-page .academy-v2-page,
body.site-tech-page .contact-main,
body.site-tech-page .article-page {
  background: transparent;
}

body.site-tech-page .glass-card,
body.site-tech-page .recycler-v2-card,
body.site-tech-page .retailer-v2-card,
body.site-tech-page .retailer-v2-value-card,
body.site-tech-page .academy-v2-card,
body.site-tech-page .contact-address-card,
body.site-tech-page .contact-info-card,
body.site-tech-page .contact-qr-card,
body.site-tech-page .contact-consult,
body.site-tech-page .contact-cta {
  border: 1px solid var(--tech-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(48, 103, 159, 0.08);
}

body.site-tech-page .primary-btn {
  border: 1px solid #eab500;
  border-radius: 6px;
  background: var(--yellow-strong);
  color: #151515;
  box-shadow: 0 10px 22px rgba(255, 196, 0, 0.2);
}

body.site-tech-page .secondary-btn {
  border: 1px solid #bdd9f4;
  border-radius: 6px;
  background: #fff;
  color: var(--tech-blue);
  box-shadow: 0 8px 20px rgba(40, 94, 150, 0.08);
}

body.site-tech-page .eyebrow,
body.site-tech-page .article-tag,
body.site-tech-page .article-card-foot span {
  color: var(--tech-blue);
}

body.site-tech-page .eyebrow::before {
  background: var(--yellow-strong);
  box-shadow: none;
}

body.site-tech-page p,
body.site-tech-page label,
body.site-tech-page .academy-v2-title p {
  color: var(--tech-muted);
}

body.site-tech-page .recycler-v2-head h2,
body.site-tech-page .retailer-v2-head h2,
body.site-tech-page .academy-v2-title h2,
body.site-tech-page .contact-section-head h2,
body.site-tech-page .contact-cta h2 {
  color: var(--tech-ink);
  font-size: 38px;
  letter-spacing: 0;
}

body.site-tech-page .recycler-v2-head h2::after,
body.site-tech-page .retailer-v2-head h2::after,
body.site-tech-page .academy-v2-title h2::after,
body.site-tech-page .contact-section-head h2::after,
body.site-tech-page .contact-cta h2::after {
  height: 4px;
  background: var(--yellow-strong);
}

body.site-tech-page .footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  border: 1px solid #d2e5f8;
  background: #eef7ff;
  color: #2f455c;
  box-shadow: 0 14px 36px rgba(40, 94, 150, 0.09);
}

body.site-tech-page .footer-contact p,
body.site-tech-page .qr-row div {
  color: #3d5267;
}

body.site-tech-page .footer-brand img {
  background: #ffd12d;
}

body.site-tech-page .modal-panel {
  border-color: var(--tech-line);
  background: #f7fbff;
  box-shadow: 0 30px 80px rgba(26, 73, 121, 0.24);
}

body.site-tech-page .modal-panel::before,
body.site-tech-page .modal-panel::after {
  display: none;
}

body.site-tech-page .modal-panel .close {
  z-index: 10;
}

body.site-tech-page .modal-panel > h3 {
  padding-right: 52px;
}

body.site-tech-page .login-role-tabs,
body.site-tech-page .login-method-tabs,
body.site-tech-page [data-login-form],
body.site-tech-page .join-form,
body.site-tech-page .qr-login-box {
  border-color: var(--tech-line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(38, 92, 147, 0.08);
}

body.site-tech-page .login-role-tabs button.is-active,
body.site-tech-page .login-method-tabs button.is-active,
body.site-tech-page .academy-tabs button.is-active {
  background: var(--tech-blue-soft);
  color: var(--tech-blue);
  box-shadow: none;
}

/* Recycler */
body.recycler-tech-page .recycler-v2-hero-card {
  border-color: #cfe3f7;
  background: #edf7ff;
  box-shadow: 0 20px 52px rgba(38, 94, 150, 0.13);
}

body.recycler-tech-page .recycler-v2-hero-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 32%, rgba(232, 245, 255, 0.5) 55%, rgba(232, 245, 255, 0.05) 78%);
}

body.recycler-tech-page .recycler-v2-hero-image {
  filter: hue-rotate(172deg) saturate(0.64) brightness(1.07);
}

body.recycler-tech-page .recycler-v2-hero-copy h1,
body.retailer-tech-page .retailer-v2-hero-copy h1,
body.academy-tech-page .academy-v2-hero-copy h1 {
  color: var(--tech-ink);
  font-size: 50px;
  letter-spacing: 0;
}

body.recycler-tech-page .recycler-v2-hero-copy p,
body.retailer-tech-page .retailer-v2-hero-copy p,
body.academy-tech-page .academy-v2-hero-copy p {
  color: #42566c;
  font-weight: 600;
}

body.recycler-tech-page .recycler-v2-hero-strip,
body.retailer-tech-page .retailer-v2-flow-strip {
  border-top: 1px solid #d4e7f8;
  background: rgba(255, 255, 255, 0.9);
}

body.recycler-tech-page .recycler-v2-hero-strip img,
body.recycler-tech-page .recycler-v2-card img,
body.recycler-tech-page .recycler-v2-reason-list img,
body.recycler-tech-page .recycler-v2-rights-col img,
body.recycler-tech-page .recycler-v2-process img {
  filter: hue-rotate(172deg) saturate(0.7);
}

body.recycler-tech-page .recycler-v2-card {
  border: 1px solid var(--tech-line);
  background: #fff;
}

body.recycler-tech-page .recycler-v2-card img,
body.retailer-tech-page .retailer-v2-card img {
  border: 1px solid #dbeaf9;
  background: #eff7ff;
  box-shadow: none;
}

body.recycler-tech-page .recycler-v2-why-visual,
body.recycler-tech-page .recycler-v2-rights-visual,
body.recycler-tech-page .recycler-v2-apply,
body.retailer-tech-page .retailer-v2-why-visual,
body.retailer-tech-page .retailer-v2-rights-visual,
body.retailer-tech-page .retailer-v2-cta {
  border-color: var(--tech-line);
  background: var(--tech-blue-soft);
}

body.recycler-tech-page .recycler-v2-why-visual img,
body.recycler-tech-page .recycler-v2-rights-visual img,
body.recycler-tech-page .recycler-v2-apply-copy img,
body.retailer-tech-page .retailer-v2-why-visual img,
body.retailer-tech-page .retailer-v2-rights-visual img,
body.retailer-tech-page .retailer-v2-cta-visual img {
  filter: hue-rotate(172deg) saturate(0.66) brightness(1.04);
}

body.recycler-tech-page .recycler-v2-reason-list article,
body.recycler-tech-page .recycler-v2-rights-col span,
body.recycler-tech-page .recycler-v2-process article,
body.retailer-tech-page .retailer-v2-value-card,
body.retailer-tech-page .retailer-v2-rights-col span,
body.retailer-tech-page .retailer-v2-process article {
  border: 1px solid var(--tech-line);
  background: #fff;
  box-shadow: 0 9px 22px rgba(42, 96, 151, 0.07);
}

body.recycler-tech-page .recycler-v2-process article:not(:last-child)::after,
body.retailer-tech-page .retailer-v2-process article:not(:last-child)::after {
  color: var(--tech-blue);
}

body.recycler-tech-page .recycler-v2-process b,
body.retailer-tech-page .retailer-v2-process b {
  background: var(--tech-blue-soft);
  color: var(--tech-blue);
  box-shadow: none;
}

body.recycler-tech-page .recycler-v2-form,
body.retailer-tech-page .retailer-v2-form {
  border: 1px solid var(--tech-line);
  background: #fff;
}

body.recycler-tech-page .recycler-v2-form input,
body.recycler-tech-page .recycler-v2-form textarea,
body.retailer-tech-page .retailer-v2-form input,
body.retailer-tech-page .retailer-v2-form textarea,
body.contact-tech-page .contact-form input,
body.contact-tech-page .contact-form select,
body.contact-tech-page .contact-form textarea {
  border-color: #cbdff3;
  background: #f8fbff;
  color: var(--tech-ink);
}

/* Retailer */
body.retailer-tech-page .retailer-v2-hero .hero-bg-grid {
  border: 1px solid #d8e9fa;
  background: #eaf5ff;
  box-shadow: 0 22px 60px rgba(43, 104, 166, 0.13);
}

body.retailer-tech-page .retailer-v2-hero-card {
  border-color: #cfe3f7;
  background: #edf7ff;
  box-shadow: 0 20px 52px rgba(38, 94, 150, 0.13);
}

body.retailer-tech-page .retailer-v2-hero-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(232, 245, 255, 0.42) 56%, rgba(232, 245, 255, 0.04) 78%),
    rgba(194, 225, 251, 0.14);
}

body.retailer-tech-page .retailer-v2-hero-image {
  filter: saturate(0.72) brightness(1.04) contrast(0.97);
}

body.retailer-tech-page .retailer-v2-flow-strip img,
body.retailer-tech-page .retailer-v2-card img,
body.retailer-tech-page .retailer-v2-value-card img,
body.retailer-tech-page .retailer-v2-rights-col img,
body.retailer-tech-page .retailer-v2-process img {
  filter: hue-rotate(172deg) saturate(0.7);
}

body.retailer-tech-page .retailer-v2-card,
body.retailer-tech-page .retailer-v2-value-card {
  border: 1px solid var(--tech-line);
  background: #fff;
}

body.retailer-tech-page .retailer-v2-cta {
  box-shadow: 0 18px 42px rgba(38, 94, 150, 0.12);
}

/* Academy and article */
body.academy-tech-page .academy-v2-hero-card {
  border-color: #cfe3f7;
  background:
    linear-gradient(rgba(23, 105, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 36px 36px;
  box-shadow: 0 20px 52px rgba(38, 94, 150, 0.12);
}

body.academy-tech-page .academy-v2-hero-visual img {
  filter: hue-rotate(172deg) saturate(0.64) brightness(1.06);
}

body.academy-tech-page .academy-v2-tabs {
  border: 1px solid var(--tech-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(42, 96, 151, 0.07);
}

body.academy-tech-page .academy-v2-card {
  border: 1px solid var(--tech-line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(42, 96, 151, 0.08);
}

body.academy-tech-page .academy-v2-card:hover {
  border-color: #9dc8f2;
  box-shadow: 0 18px 36px rgba(42, 96, 151, 0.13);
}

body.academy-tech-page .academy-v2-card .article-thumb {
  border: 1px solid #dbeaf9;
  background: #eef7ff;
}

body.academy-tech-page .article-tag.locked,
body.academy-tech-page .lock-badge {
  background: #eaf5ff;
  color: var(--tech-blue);
}

body.article-tech-page .article-detail-page {
  padding-top: 52px;
}

body.article-tech-page .back-link {
  color: var(--tech-blue);
  text-decoration-color: var(--yellow-strong);
}

body.article-tech-page .article-page-card {
  border: 1px solid var(--tech-line);
  background: #fff;
  box-shadow: 0 16px 42px rgba(39, 93, 149, 0.1);
}

body.article-tech-page .article-page-card h1 {
  color: var(--tech-ink);
  font-size: 46px;
  letter-spacing: 0;
}

body.article-tech-page .article-hero-image {
  border: 1px solid var(--tech-line);
}

/* Contact */
body.contact-tech-page .contact-hero-card {
  border-color: #cfe3f7;
  background: #edf7ff;
  box-shadow: 0 20px 52px rgba(38, 94, 150, 0.13);
}

body.contact-tech-page .contact-hero-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.91) 34%, rgba(232, 245, 255, 0.42) 57%, rgba(232, 245, 255, 0.04) 80%),
    rgba(194, 225, 251, 0.14);
}

body.contact-tech-page .contact-hero-image {
  filter: saturate(0.7) brightness(1.03) contrast(0.98);
}

body.contact-tech-page .contact-hero-copy h2 {
  color: var(--tech-ink);
  font-size: 46px;
  letter-spacing: 0;
}

body.contact-tech-page .contact-map {
  border: 1px solid #cfe3f7;
  background: #edf7ff;
  box-shadow: 0 14px 34px rgba(42, 96, 151, 0.1);
}

body.contact-tech-page .map-grid {
  background-image:
    linear-gradient(rgba(23, 105, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.08) 1px, transparent 1px);
}

body.contact-tech-page .map-road {
  background: #b9d7f5;
}

body.contact-tech-page .map-pin,
body.contact-tech-page .contact-card-icon {
  background: var(--tech-blue);
  color: #fff;
}

body.contact-tech-page .map-label,
body.contact-tech-page .map-zone {
  border-color: #bdd9f4;
  background: #fff;
  color: var(--tech-ink);
}

body.contact-tech-page .contact-address-card {
  background: #fff;
}

body.contact-tech-page .contact-cta {
  background: var(--tech-blue-soft);
}

@media (max-width: 980px) {
  body.site-tech-page .topbar {
    width: calc(100% - 28px);
    padding-inline: 10px;
  }

  body.site-tech-page .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  body.site-tech-page .brand {
    min-width: 130px;
  }

  body.recycler-tech-page .recycler-v2-hero-copy h1,
  body.retailer-tech-page .retailer-v2-hero-copy h1,
  body.academy-tech-page .academy-v2-hero-copy h1,
  body.contact-tech-page .contact-hero-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 760px) {
  body.site-tech-page .topbar {
    position: relative;
    width: calc(100% - 24px);
    min-height: 0;
    margin: 0 auto;
    padding: 10px 0 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  body.site-tech-page .brand {
    align-self: center;
    width: auto;
    min-width: 0;
    height: 50px;
  }

  body.site-tech-page .brand-wordmark strong {
    font-size: 20px;
  }

  body.site-tech-page .nav-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.site-tech-page .nav-links a,
  body.site-tech-page .nav-links .nav-login {
    min-width: 0;
    min-height: 38px;
    padding: 9px 4px;
    display: grid;
    place-items: center;
    border: 1px solid #d9e9f8;
    border-radius: 6px;
    background: #fff;
    color: #26394d;
    font-size: 13px;
  }

  body.site-tech-page .nav-links a.is-active {
    border-color: #9fcaf3;
    background: var(--tech-blue-soft);
    color: var(--tech-blue);
    box-shadow: none;
  }

  body.site-tech-page .nav-links .nav-login {
    border-color: #eab500;
    background: var(--yellow-strong);
    color: #141414;
  }

  body.site-tech-page .section-pad,
  body.site-tech-page .recycler-v2-main .section-pad,
  body.site-tech-page .retailer-v2-main .section-pad,
  body.site-tech-page .academy-v2-page .section-pad,
  body.site-tech-page .contact-main .section-pad {
    width: calc(100% - 24px);
    padding-top: 36px;
    padding-bottom: 36px;
  }

  body.recycler-tech-page .recycler-v2-hero-copy h1,
  body.retailer-tech-page .retailer-v2-hero-copy h1,
  body.academy-tech-page .academy-v2-hero-copy h1,
  body.contact-tech-page .contact-hero-copy h2,
  body.article-tech-page .article-page-card h1 {
    font-size: 32px;
  }

  body.site-tech-page .recycler-v2-head h2,
  body.site-tech-page .retailer-v2-head h2,
  body.site-tech-page .academy-v2-title h2,
  body.site-tech-page .contact-section-head h2,
  body.site-tech-page .contact-cta h2 {
    font-size: 30px;
  }

  body.site-tech-page .footer {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  body.site-tech-page .qr-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Home 2026: pale-blue technology redesign */
body.home-page {
  --home-blue: #1769e0;
  --home-blue-strong: #0f57c8;
  --home-blue-soft: #eaf4ff;
  --home-blue-pale: #f5faff;
  --home-line: #d4e6f8;
  --home-ink: #101828;
  --home-muted: #5a6b7f;
  color: var(--home-ink);
  background: #f6faff;
}

body.home-page .site-shell {
  background:
    linear-gradient(rgba(23, 105, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.035) 1px, transparent 1px),
    #f8fbff;
  background-size: 48px 48px;
}

body.home-page .site-shell::before {
  display: none;
}

body.home-page .topbar {
  top: 0;
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid var(--home-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(42, 91, 145, 0.06);
}

body.home-page .brand {
  width: auto;
  min-height: 54px;
  gap: 10px;
}

body.home-page .brand-icon {
  position: relative;
  width: 46px;
  height: 50px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--yellow);
}

body.home-page .brand-icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 150px;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
  transform: translate(-5px, -30px);
}

body.home-page .brand-wordmark {
  display: grid;
  gap: 3px;
  color: #111;
}

body.home-page .brand-wordmark strong {
  font-size: 22px;
  line-height: 1;
}

body.home-page .brand-wordmark small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

body.home-page .nav-links {
  gap: 30px;
  color: #202938;
  font-size: 15px;
  font-weight: 700;
}

body.home-page .nav-links a::after {
  height: 2px;
  bottom: 2px;
  background: var(--home-blue);
}

body.home-page .nav-links .nav-login {
  min-width: 76px;
  padding: 10px 20px;
  border: 1px solid #f2bb00;
  border-radius: 6px;
  background: var(--yellow-strong);
  color: #171717;
  text-align: center;
  box-shadow: 0 8px 18px rgba(255, 196, 0, 0.18);
}

body.home-page .nav-links .nav-login::after {
  display: none;
}

body.home-page .section-pad {
  width: min(1180px, calc(100% - 40px));
  padding: 54px 0;
}

body.home-page .home-hero-section {
  width: min(1240px, calc(100% - 40px));
  padding: 24px 0 48px;
}

body.home-page .home-hero-section .hero-bg-grid {
  inset: 24px -18px 48px;
  border: 1px solid #d8e9fa;
  border-radius: 8px;
  background: #eaf5ff;
  box-shadow: 0 22px 60px rgba(43, 104, 166, 0.13);
}

body.home-page .home-hero-section .slides,
body.home-page .home-hero-section .slide {
  height: 664px;
  min-height: 664px;
}

body.home-page .home-hero-section .slide {
  border: 1px solid rgba(199, 224, 247, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(44, 91, 140, 0.1);
}

body.home-page .design-banner-image {
  filter: saturate(0.82) hue-rotate(172deg) brightness(1.06);
}

body.home-page .home-hero-section .slide:first-child .design-banner-image {
  filter: saturate(0.62) hue-rotate(172deg) brightness(1.08) contrast(0.98);
}

body.home-page .hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 105, 224, 0.26);
  background: rgba(255, 255, 255, 0.94);
  color: var(--home-blue);
  box-shadow: 0 10px 26px rgba(27, 85, 144, 0.16);
  line-height: 1;
}

body.home-page .saas-join-hotspot {
  left: 3.55%;
  top: 72.2%;
  width: 19.2%;
  height: 8.8%;
  display: grid;
  place-items: center;
  border: 1px solid #eab500;
  border-radius: 8px;
  background: var(--yellow-strong);
  color: #151515;
  font-size: 21px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.24);
}

body.home-page .saas-join-hotspot:hover {
  background: #ffd12d;
}

body.home-page .hero-dots button {
  background: #b9d6f5;
}

body.home-page .hero-dots button.is-active {
  background: var(--home-blue);
}

body.home-page .pain-section,
body.home-page .home-solution-section,
body.home-page .intro-section,
body.home-page .map-section,
body.home-page #academy,
body.home-page .case-section,
body.home-page .partner-section {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}

body.home-page .pain-section,
body.home-page .intro-section,
body.home-page #academy,
body.home-page .partner-section {
  background: #fff;
}

body.home-page .home-solution-section,
body.home-page .map-section,
body.home-page .case-section {
  background: var(--home-blue-pale);
}

body.home-page .section-head,
body.home-page .home-section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

body.home-page .section-head h2,
body.home-page .home-section-head h2,
body.home-page .intro-copy h2 {
  margin: 0 0 12px;
  color: var(--home-ink);
  font-size: 38px;
  line-height: 1.24;
  letter-spacing: 0;
}

body.home-page .section-head h2::after,
body.home-page .home-section-head h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 13px;
  border-radius: 4px;
  background: var(--yellow-strong);
}

body.home-page .home-section-head p,
body.home-page .intro-copy p,
body.home-page .article-card p,
body.home-page .case-card p {
  color: var(--home-muted);
  font-weight: 500;
  line-height: 1.75;
}

body.home-page .eyebrow {
  color: var(--home-blue);
}

body.home-page .glass-card,
body.home-page .solution-card,
body.home-page .article-card,
body.home-page .case-card {
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(48, 103, 159, 0.08);
}

body.home-page .home-pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.home-page .home-pain-grid .issue-card {
  min-height: 218px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(44, 101, 158, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.home-page .home-pain-grid .issue-card::after {
  right: -26px;
  top: -30px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(23, 105, 224, 0.12);
  background: #edf6ff;
}

body.home-page .home-pain-grid .issue-card:hover {
  transform: translateY(-4px);
  border-color: #9dc8f2;
  box-shadow: 0 18px 34px rgba(35, 95, 154, 0.12);
}

body.home-page .home-pain-grid .asset-icon {
  width: 64px;
  height: 64px;
  padding: 7px;
  border: 1px solid #d9eafa;
  border-radius: 8px;
  background: #f1f8ff;
  filter: hue-rotate(172deg) saturate(0.72);
}

body.home-page .home-pain-grid h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}

body.home-page .home-pain-grid p {
  margin: 0;
  font-size: 14px;
}

body.home-page .home-solution-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

body.home-page .home-solution-tile {
  min-height: 166px;
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: 72px auto;
  align-items: center;
  gap: 8px 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(47, 104, 162, 0.08);
}

body.home-page .home-solution-tile::after {
  display: none;
}

body.home-page .home-solution-tile b {
  position: static;
  width: 38px;
  height: 32px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  transform: none;
  border: 1px solid #bcd9f4;
  border-radius: 6px;
  background: #eaf5ff;
  color: var(--home-blue);
  font-size: 13px;
  box-shadow: none;
}

body.home-page .home-solution-tile .asset-icon {
  width: 76px;
  height: 70px;
  margin: 0;
  justify-self: end;
  border-radius: 8px;
  filter: hue-rotate(172deg) saturate(0.72);
}

body.home-page .home-solution-tile h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: #182638;
  font-size: 17px;
  line-height: 1.45;
}

body.home-page .solution-visual-panel {
  min-height: 430px;
  padding: 22px 22px 82px;
  background:
    linear-gradient(rgba(23, 105, 224, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.055) 1px, transparent 1px),
    #eef7ff;
  background-size: 34px 34px;
}

body.home-page .solution-visual-panel img {
  height: 330px;
  filter: hue-rotate(172deg) saturate(0.66) brightness(1.04);
}

body.home-page .solution-visual-caption {
  left: 24px;
  right: 24px;
  bottom: 22px;
  border-color: #d4e7fa;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(37, 92, 149, 0.1);
}

body.home-page .solution-visual-caption span {
  color: var(--home-blue);
}

body.home-page .intro-section {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  padding-top: 64px;
  padding-bottom: 64px;
}

body.home-page .video-card {
  padding: 12px;
  border-color: var(--home-line);
  background: #edf7ff;
  box-shadow: 0 18px 40px rgba(43, 100, 157, 0.11);
}

body.home-page .video-screen {
  min-height: 390px;
  background: #edf7ff;
}

body.home-page .video-screen::after {
  background: rgba(24, 105, 224, 0.05);
}

body.home-page .video-cover {
  filter: hue-rotate(172deg) saturate(0.68) brightness(1.04);
}

body.home-page .video-screen button {
  width: 74px;
  height: 74px;
  border: 3px solid #fff;
  background: var(--home-blue);
  box-shadow: 0 12px 28px rgba(15, 87, 200, 0.28);
}

body.home-page .video-screen button::after {
  left: 30px;
  top: 21px;
  border-left-color: #fff;
}

body.home-page .intro-stats {
  gap: 10px;
}

body.home-page .intro-stats span,
body.home-page .map-stats span {
  border: 1px solid #cfe4f8;
  background: #edf7ff;
  color: #3f5369;
}

body.home-page .intro-stats b,
body.home-page .map-stats b {
  color: var(--home-blue);
  font-size: 22px;
}

body.home-page .map-card {
  grid-template-columns: 0.7fr 1.3fr;
  min-height: 430px;
  padding: 28px;
  background:
    linear-gradient(rgba(23, 105, 224, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 36px 36px;
}

body.home-page .china-map-image {
  order: 2;
  filter: hue-rotate(172deg) saturate(0.64) brightness(1.08) drop-shadow(0 18px 24px rgba(32, 95, 157, 0.15));
}

body.home-page .map-stats {
  order: 1;
}

body.home-page .map-stats span {
  min-height: 92px;
  align-content: center;
  padding: 18px;
}

body.home-page .article-grid {
  gap: 16px;
}

body.home-page .article-card {
  overflow: hidden;
  padding: 14px 14px 20px;
}

body.home-page .article-card:hover {
  border-color: #9dc8f2;
  box-shadow: 0 18px 36px rgba(44, 101, 158, 0.13);
}

body.home-page .article-thumb {
  border: 1px solid #dbeaf9;
  border-radius: 6px;
  overflow: hidden;
}

body.home-page .article-card h3 {
  margin: 18px 6px 8px;
  color: #15243a;
  font-size: 22px;
}

body.home-page .article-card p {
  margin: 0 6px;
  font-size: 14px;
}

body.home-page .case-grid {
  gap: 18px;
}

body.home-page .case-card {
  min-height: 0;
}

body.home-page .case-image {
  border-bottom-color: var(--home-line);
  filter: saturate(0.84) brightness(1.02);
}

body.home-page .case-content {
  padding: 22px;
}

body.home-page .case-card h3 {
  margin-top: 0;
  color: #14243a;
  font-size: 26px;
}

body.home-page .partner-row {
  gap: 12px;
  padding: 16px;
  border-color: var(--home-line);
  background: #f7fbff;
  box-shadow: none;
}

body.home-page .partner-row span {
  border: 1px solid #dbeafa;
  background: #fff;
}

body.home-page .footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  border: 1px solid #d2e5f8;
  background: #eef7ff;
  color: #2f455c;
  box-shadow: 0 14px 36px rgba(40, 94, 150, 0.09);
}

body.home-page .footer-contact p,
body.home-page .qr-row div {
  color: #3d5267;
}

body.home-page .footer-brand img {
  background: #ffd12d;
}

body.home-page .modal-panel {
  border-color: #d6e8fa;
  background: #f7fbff;
  box-shadow: 0 30px 80px rgba(26, 73, 121, 0.24);
}

body.home-page .modal-panel::before,
body.home-page .modal-panel::after {
  display: none;
}

body.home-page .modal-panel .close {
  z-index: 10;
}

body.home-page .modal-panel > h3 {
  padding-right: 52px;
}

body.home-page .primary-btn,
body.home-page .choice-grid button,
body.home-page [data-login-form] button[type="submit"] {
  border-color: #eab500;
  background: var(--yellow-strong);
  color: #141414;
}

body.home-page .login-role-tabs,
body.home-page .login-method-tabs,
body.home-page [data-login-form],
body.home-page .join-form,
body.home-page .qr-login-box {
  border-color: #d7e8f8;
  background: #fff;
  box-shadow: 0 10px 24px rgba(38, 92, 147, 0.08);
}

body.home-page .login-role-tabs button.is-active,
body.home-page .login-method-tabs button.is-active {
  background: #eaf5ff;
  color: var(--home-blue);
  box-shadow: none;
}

@media (max-width: 980px) {
  body.home-page .topbar {
    width: calc(100% - 28px);
    padding-inline: 10px;
  }

  body.home-page .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  body.home-page .brand {
    min-width: 130px;
  }

  body.home-page .home-hero-section .slides,
  body.home-page .home-hero-section .slide {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  body.home-page .home-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .intro-section {
    grid-template-columns: 1fr;
  }

  body.home-page .map-card {
    grid-template-columns: 1fr;
  }

  body.home-page .china-map-image,
  body.home-page .map-stats {
    order: initial;
  }
}

@media (max-width: 760px) {
  body.home-page .topbar {
    position: relative;
    width: calc(100% - 24px);
    min-height: 0;
    margin: 0 auto;
    padding: 10px 0 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  body.home-page .brand {
    align-self: center;
    width: auto;
    height: 50px;
  }

  body.home-page .brand-wordmark strong {
    font-size: 20px;
  }

  body.home-page .nav-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.home-page .nav-links a,
  body.home-page .nav-links .nav-login {
    min-width: 0;
    min-height: 38px;
    padding: 9px 4px;
    display: grid;
    place-items: center;
    border: 1px solid #d9e9f8;
    border-radius: 6px;
    background: #fff;
    color: #26394d;
    font-size: 13px;
  }

  body.home-page .nav-links a.is-active {
    border-color: #9fcaf3;
    background: #eaf5ff;
    color: var(--home-blue);
    box-shadow: none;
  }

  body.home-page .nav-links .nav-login {
    border-color: #eab500;
    background: var(--yellow-strong);
    color: #141414;
  }

  body.home-page .section-pad,
  body.home-page .home-hero-section {
    width: calc(100% - 24px);
  }

  body.home-page .home-hero-section {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  body.home-page .home-hero-section .hero-bg-grid {
    inset: 18px -6px 38px;
  }

  body.home-page .saas-join-hotspot {
    font-size: 11px;
  }

  body.home-page .pain-section,
  body.home-page .home-solution-section,
  body.home-page .intro-section,
  body.home-page .map-section,
  body.home-page #academy,
  body.home-page .case-section,
  body.home-page .partner-section {
    padding: 38px 12px;
  }

  body.home-page .section-head h2,
  body.home-page .home-section-head h2,
  body.home-page .intro-copy h2 {
    font-size: 30px;
  }

  body.home-page .home-section-head p {
    font-size: 15px;
  }

  body.home-page .home-pain-grid,
  body.home-page .home-solution-grid,
  body.home-page .article-grid,
  body.home-page .case-grid,
  body.home-page .partner-row {
    grid-template-columns: 1fr;
  }

  body.home-page .home-pain-grid .issue-card {
    min-height: 0;
  }

  body.home-page .home-solution-tile {
    min-height: 132px;
    grid-template-columns: 44px 1fr;
    grid-template-rows: 58px auto;
  }

  body.home-page .home-solution-tile .asset-icon {
    width: 64px;
    height: 58px;
  }

  body.home-page .solution-visual-panel {
    min-height: 0;
    padding: 10px;
  }

  body.home-page .solution-visual-panel img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  body.home-page .solution-visual-caption {
    position: static;
    margin-top: 10px;
  }

  body.home-page .video-screen {
    min-height: 230px;
  }

  body.home-page .intro-stats {
    grid-template-columns: 1fr;
  }

  body.home-page .map-card {
    min-height: 0;
    padding: 14px;
  }

  body.home-page .map-stats span {
    min-height: 0;
  }

  body.home-page .footer {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  body.home-page .qr-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Unified website banner system */
:root {
  --site-banner-height: clamp(430px, 56vw, 664px);
}

.home-hero-section {
  width: min(1180px, calc(100% - 32px));
}

.home-hero-section .slides,
.home-hero-section .slide,
.recycler-v2-hero-card,
.retailer-v2-hero-card,
.contact-hero-card,
.academy-v2-hero-card {
  height: var(--site-banner-height);
  min-height: var(--site-banner-height);
}

.home-hero-section .slide {
  overflow: hidden;
  border-radius: 8px;
}

.design-banner-image {
  height: 100%;
  object-fit: cover;
}

.recycler-v2-hero-image,
.retailer-v2-hero-image,
.contact-hero-image {
  height: 100%;
  object-fit: cover;
}

.academy-v2-hero-card {
  grid-template-columns: 0.84fr 1.16fr;
  gap: 38px;
}

.academy-v2-hero-visual {
  height: min(430px, calc(var(--site-banner-height) - 120px));
}

.modal::backdrop {
  background: rgba(16, 16, 16, 0.38);
  backdrop-filter: blur(14px);
}

.modal-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 232, 0.72)),
    rgba(255, 250, 232, 0.84);
  box-shadow: 0 34px 90px rgba(16, 16, 16, 0.28), inset 1px 1px 0 rgba(255, 255, 255, 0.92);
}

.modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("./assets/images/home/modal-style-reference-opt-v1.webp") center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.modal-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -32% 38%;
  z-index: 0;
  height: 58%;
  background: radial-gradient(circle, rgba(255, 209, 45, 0.36), transparent 64%);
  pointer-events: none;
}

.modal-panel > * {
  position: relative;
  z-index: 1;
}

.login-panel {
  width: min(900px, calc(100vw - 32px));
  gap: 18px;
  padding: 34px;
}

.login-panel h3,
.modal-panel h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.login-role-tabs,
.login-method-tabs,
.academy-tabs {
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.8), 0 12px 36px rgba(52, 42, 0, 0.08);
}

.login-role-tabs button,
.login-method-tabs button,
.academy-tabs button {
  min-height: 38px;
  border-radius: 7px;
}

.qr-login-box,
[data-login-form],
.join-form,
.choice-grid button {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.78), 0 14px 38px rgba(52, 42, 0, 0.08);
}

[data-login-form],
.join-form {
  padding: 18px;
  border-radius: 8px;
}

.close {
  border-radius: 50%;
  background: #111;
  color: #fff5c4;
  box-shadow: 0 12px 28px rgba(16, 16, 16, 0.2);
}

@media (max-width: 980px) {
  .home-hero-section .slides,
  .home-hero-section .slide,
  .recycler-v2-hero-card,
  .retailer-v2-hero-card,
  .contact-hero-card,
  .academy-v2-hero-card {
    height: auto;
    min-height: auto;
  }

  .home-hero-section .slides,
  .home-hero-section .slide {
    aspect-ratio: 16 / 9;
  }

  .recycler-v2-hero-image,
  .retailer-v2-hero-image,
  .contact-hero-image,
  .academy-v2-hero-visual {
    aspect-ratio: 16 / 9;
  }

  .academy-v2-hero-visual {
    height: auto;
  }
}

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

  [data-login-form],
  .join-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 900;
  color: #111;
  text-decoration: underline;
  text-decoration-color: var(--yellow-strong);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.article-detail-page {
  padding-top: 48px;
}

.article-page-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 34px;
}

.article-page-card h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.14;
}

.article-page-card .lead {
  max-width: 760px;
  margin-bottom: 24px;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 20px 0 28px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(52, 42, 0, 0.16);
}

.article-richtext {
  display: grid;
  gap: 18px;
  color: #3f3a2e;
  font-size: 18px;
  line-height: 1.95;
}

.article-richtext p {
  margin: 0;
}

.article-thumb {
  height: 170px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  position: relative;
  overflow: hidden;
}

.article-thumb::before,
.article-thumb::after {
  content: none;
}

.article-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-a {
  background: linear-gradient(135deg, #fff5bb, #ffd12d);
}

.thumb-a::before {
  width: 74px;
  height: 112px;
  left: 36px;
  top: 26px;
  border-radius: 16px;
}

.thumb-a::after {
  width: 110px;
  height: 56px;
  right: 34px;
  bottom: 32px;
  border-radius: 8px;
}

.thumb-b {
  background: linear-gradient(135deg, #fffaf0, #ffd12d);
}

.thumb-b::before {
  width: 150px;
  height: 90px;
  left: 36px;
  top: 44px;
  border-radius: 8px;
}

.thumb-b::after {
  width: 72px;
  height: 72px;
  right: 52px;
  top: 52px;
  border-radius: 50%;
}

.thumb-c {
  background: linear-gradient(135deg, #ffe169, #fffdf6);
}

.thumb-c::before {
  width: 94px;
  height: 94px;
  left: 52px;
  top: 38px;
  border-radius: 50%;
}

.thumb-c::after {
  width: 118px;
  height: 38px;
  right: 38px;
  top: 68px;
  border-radius: 99px;
}

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

.case-card {
  min-height: 330px;
  padding: 0;
  overflow: hidden;
}

.case-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.case-content {
  padding: 24px;
}

.case-card h3 {
  font-size: 30px;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 18px;
}

.partner-row span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.partner-row img {
  width: min(158px, 82%);
  max-height: 66px;
  object-fit: contain;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.1fr;
  gap: 24px;
  align-items: start;
  border-radius: 8px;
  background: #111;
  color: #fff4c6;
}

.footer-contact p {
  margin: 0 0 8px;
  font-weight: 700;
}

.qr-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.qr-row div {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  color: #fff6d7;
  font-size: 13px;
  font-weight: 700;
}

.qr-row img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff6d7;
}

.modal {
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(16, 16, 16, 0.28);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 250, 240, 0.82);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.login-panel {
  width: min(760px, calc(100vw - 32px));
  display: grid;
  gap: 16px;
}

.login-panel h3 {
  margin-bottom: 0;
}

.login-role-tabs,
.login-method-tabs {
  width: fit-content;
}

.login-view {
  display: grid;
  gap: 14px;
}

.qr-login-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.qr-login-box img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.qr-login-box b {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.qr-login-box p {
  color: var(--muted);
  line-height: 1.7;
}

[data-login-form],
.join-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

[data-login-form] .primary-btn,
[data-login-form] .form-success,
.join-form h4,
.join-form .primary-btn,
.join-form .form-success {
  grid-column: 1 / -1;
}

.join-entry {
  display: flex;
  justify-content: flex-start;
}

.join-entry button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--yellow-strong);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.join-form {
  padding-top: 12px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.join-form h4 {
  margin: 0;
  font-size: 20px;
}

.close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: var(--yellow);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.choice-grid button {
  min-height: 96px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 8px;
  background: var(--yellow);
  cursor: pointer;
  font-weight: 900;
}

.article-detail p {
  color: var(--muted);
  line-height: 1.9;
}

textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.58);
  outline: none;
}

.recycler-main {
  position: relative;
}

.recycler-hero {
  min-height: 0;
  padding-top: 34px;
  padding-bottom: 44px;
}

.recycler-design-banner {
  position: relative;
  z-index: 2;
}

.recycler-design-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(52, 42, 0, 0.16), inset 1px 1px 0 rgba(255, 255, 255, 0.74);
}

.design-section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.design-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.design-section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow-strong), transparent);
}

.design-section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  text-align: center;
}

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

.recycler-advantage-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.recycler-advantage-card img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 8px 8px 18px rgba(69, 54, 0, 0.12);
}

.recycler-advantage-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.35;
}

.recycler-advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.recycler-flow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-top: 10px;
}

.recycler-flow-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 34px;
  height: 2px;
  border-top: 2px dashed var(--yellow-strong);
}

.recycler-flow-timeline article {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.recycler-flow-timeline b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-strong);
  color: #111;
  font-size: 17px;
  box-shadow: 0 0 0 8px rgba(255, 196, 0, 0.16);
}

.recycler-flow-timeline img {
  width: 72px;
  height: 72px;
  margin-top: 10px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 8px 8px 18px rgba(69, 54, 0, 0.12);
}

.recycler-flow-timeline h3 {
  margin: 0;
  font-size: 18px;
}

.recycler-flow-timeline p {
  max-width: 132px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.recycler-banner-hotspot {
  position: absolute;
  z-index: 5;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.apply-hotspot {
  left: 4.8%;
  top: 47%;
  width: 17.5%;
  height: 8.5%;
}

.flow-hotspot {
  left: 23.5%;
  top: 47%;
  width: 15%;
  height: 8.5%;
}

.recycler-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
}

.recycler-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: 1.06;
}

.recycler-hero-copy .lead {
  max-width: 560px;
  margin-bottom: 30px;
}

.recycler-hero-visual {
  padding: 14px;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.recycler-hero-visual img,
.choose-visual img,
.recycler-cta img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.recycler-hero-visual img,
.choose-visual img {
  aspect-ratio: 16 / 9;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span,
.benefit-pills span {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badges img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.recycler-hero-process {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.recycler-hero-process article {
  position: relative;
  min-height: 138px;
  padding: 18px 16px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 14px 14px 30px rgba(62, 50, 0, 0.12), inset 1px 1px 0 rgba(255, 255, 255, 0.76);
}

.recycler-hero-process article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  width: 30px;
  height: 18px;
  background: var(--yellow-strong);
  clip-path: polygon(0 36%, 68% 36%, 68% 0, 100% 50%, 68% 100%, 68% 64%, 0 64%);
  transform: translateY(-50%);
  z-index: 2;
}

.recycler-hero-process img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.recycler-hero-process h3 {
  margin: 0;
  font-size: 18px;
  text-align: center;
}

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

.recycler-feature-card,
.fit-card {
  padding: 24px;
}

.recycler-feature-card img,
.fit-card img,
.flow-list img {
  width: 76px;
  height: 76px;
  display: block;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 8px 8px 18px rgba(69, 54, 0, 0.12);
}

.recycler-feature-card p,
.choose-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.recycler-choose {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 46px;
}

.choose-visual {
  padding: 18px;
}

.benefit-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.benefit-pills span {
  display: grid;
  gap: 6px;
  background: rgba(255, 209, 45, 0.42);
}

.benefit-pills b {
  font-size: 22px;
}

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

.fit-card h3 {
  line-height: 1.5;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
}

.flow-list article {
  position: relative;
  min-height: 190px;
  padding: 18px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  text-align: center;
}

.flow-list article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-top: 5px solid #111;
  border-right: 5px solid #111;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.flow-list img {
  margin: 0 auto 14px;
}

.flow-list span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #111;
  color: var(--yellow);
  font-weight: 900;
}

.flow-list h3 {
  font-size: 18px;
}

.recycler-cta {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
}

.recycler-cta img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.recycler-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.62) 46%, rgba(255, 209, 45, 0.08));
}

.cta-content {
  position: relative;
  z-index: 2;
  width: min(560px, 92%);
  padding: 54px;
}

.recycler-apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, calc(100vw - 32px));
}

.recycler-apply-form h3,
.recycler-apply-form .close,
.recycler-apply-form .form-wide,
.recycler-apply-form .form-success {
  grid-column: 1 / -1;
}

.form-success {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 209, 45, 0.42);
  font-weight: 900;
}

.form-success.is-visible {
  display: block;
}

.retailer-main {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.34), rgba(255, 255, 255, 0.48) 18%, rgba(255, 250, 240, 0.28) 100%);
}

.retailer-hero {
  min-height: 0;
  padding-top: 34px;
  padding-bottom: 34px;
}

.retailer-design-banner,
.retailer-cta-banner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
}

.retailer-design-banner img,
.retailer-cta-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(52, 42, 0, 0.16), inset 1px 1px 0 rgba(255, 255, 255, 0.74);
}

.retailer-hero-content {
  position: absolute;
  left: clamp(30px, 5.6vw, 70px);
  top: 50%;
  z-index: 3;
  width: min(500px, 44%);
  transform: translateY(-50%);
}

.retailer-hero-content h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.14;
}

.retailer-hero-content p {
  margin-bottom: 28px;
  color: #373120;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.retailer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.retailer-hero-points,
.retailer-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  color: #4b4436;
  font-size: 14px;
  font-weight: 900;
}

.retailer-hero-points span,
.retailer-cta-points span {
  position: relative;
  padding-left: 18px;
}

.retailer-hero-points span::before,
.retailer-cta-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-strong);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.18);
}

.retailer-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.retailer-section-head h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 44px);
}

.retailer-section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.retailer-pain-grid,
.retailer-benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.retailer-icon-card {
  min-height: 160px;
  padding: 18px 14px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.retailer-icon-card img {
  width: 82px;
  height: 82px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 8px 8px 18px rgba(69, 54, 0, 0.12);
}

.retailer-icon-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.retailer-solution-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.retailer-solution-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 24px;
}

.retailer-system-visual {
  padding: 14px;
}

.retailer-system-visual img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

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

.retailer-solution-list article {
  min-height: 104px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 13px;
}

.retailer-solution-list img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: contain;
}

.retailer-solution-list h3 {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.35;
}

.retailer-solution-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.retailer-benefit-section,
.retailer-pain-section,
.retailer-flow-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.retailer-flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.retailer-flow-line article {
  position: relative;
  min-height: 150px;
  padding: 14px 12px 16px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 12px 12px 24px rgba(60, 48, 0, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.74);
}

.retailer-flow-line article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  width: 22px;
  height: 16px;
  background: rgba(16, 16, 16, 0.34);
  clip-path: polygon(0 36%, 65% 36%, 65% 0, 100% 50%, 65% 100%, 65% 64%, 0 64%);
  transform: translateY(-50%);
  z-index: 3;
}

.retailer-flow-line b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-strong);
  color: #111;
  font-size: 15px;
}

.retailer-flow-line img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: contain;
}

.retailer-flow-line h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.retailer-cta-section {
  padding-top: 28px;
  padding-bottom: 26px;
}

.retailer-cta-content {
  position: absolute;
  left: clamp(30px, 5.2vw, 64px);
  top: 50%;
  z-index: 3;
  width: min(520px, 42%);
  transform: translateY(-50%);
}

.retailer-cta-content h2 {
  margin-bottom: 22px;
  color: #fff7d2;
  font-size: clamp(30px, 3.5vw, 50px);
}

.retailer-cta-content h2::first-line {
  color: #fff;
}

.dark-ghost-btn {
  border-color: rgba(255, 209, 45, 0.68);
  background: rgba(16, 16, 16, 0.42);
  color: #fff7d2;
}

.retailer-cta-points {
  color: #fff4c7;
}

.retailer-v2-main {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 209, 45, 0.3), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 220, 0.58), rgba(255, 255, 255, 0.7) 18%, rgba(255, 250, 240, 0.42));
}

.retailer-v2-hero {
  padding-top: 34px;
  padding-bottom: 34px;
}

.retailer-v2-hero-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.72);
}

.retailer-v2-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 250, 226, 0.92) 0%, rgba(255, 250, 226, 0.82) 30%, rgba(255, 250, 226, 0.38) 56%, rgba(255, 250, 226, 0.02) 76%);
}

.retailer-v2-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.retailer-v2-hero-copy {
  position: relative;
  z-index: 4;
  width: min(610px, 52%);
  padding: 92px 0 0 56px;
}

.retailer-v2-hero-copy h1 {
  max-width: 610px;
  margin: 16px 0 20px;
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 1.14;
}

.retailer-v2-mobile-break {
  display: none;
}

.retailer-v2-desktop-break {
  display: inline;
}

.retailer-v2-hero-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  color: #3d3729;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
}

.retailer-v2-flow-strip {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 38px;
  z-index: 3;
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.78), 0 18px 44px rgba(65, 52, 0, 0.12);
}

.retailer-v2-flow-strip span {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #2b271c;
  font-size: 14px;
  font-weight: 900;
}

.retailer-v2-flow-strip img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
}

.retailer-v2-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.retailer-v2-head {
  max-width: 840px;
  margin-bottom: 24px;
}

.retailer-v2-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
}

.retailer-v2-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow-strong);
}

.retailer-v2-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.retailer-v2-card {
  min-height: 300px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 209, 45, 0.13)),
    rgba(255, 255, 255, 0.5);
}

.retailer-v2-card img {
  width: 118px;
  height: 100px;
  display: block;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 8px 8px 20px rgba(69, 54, 0, 0.1);
}

.retailer-v2-card h3,
.retailer-v2-value-card h3,
.retailer-v2-process h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.retailer-v2-card p,
.retailer-v2-value-card p,
.retailer-v2-process p,
.retailer-v2-cta-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.retailer-v2-hero-copy,
.retailer-v2-card,
.retailer-v2-value-card,
.retailer-v2-process article,
.retailer-v2-rights-col span,
.retailer-v2-form label {
  min-width: 0;
}

.retailer-v2-hero-copy h1,
.retailer-v2-hero-copy p,
.retailer-v2-card h3,
.retailer-v2-card p,
.retailer-v2-value-card h3,
.retailer-v2-value-card p,
.retailer-v2-process h3,
.retailer-v2-process p,
.retailer-v2-rights-col span,
.retailer-v2-cta-copy h2,
.retailer-v2-cta-copy p {
  overflow-wrap: anywhere;
}

.retailer-v2-why-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.retailer-v2-why-visual {
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: 18px;
}

.retailer-v2-why-visual img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

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

.retailer-v2-value-card {
  min-height: 260px;
  padding: 22px 18px;
}

.retailer-v2-value-card img {
  width: 86px;
  height: 82px;
  display: block;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: contain;
}

.retailer-v2-value-card h3 {
  font-size: 20px;
}

.retailer-v2-value-card p {
  font-size: 14px;
}

.retailer-v2-rights {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.08fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.retailer-v2-rights-col {
  display: grid;
  gap: 14px;
}

.retailer-v2-rights-col span {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 12px 12px 26px rgba(60, 48, 0, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.76);
  color: #1b1a16;
  font-weight: 900;
  line-height: 1.55;
}

.retailer-v2-rights-col span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  border-top: 2px dashed rgba(255, 196, 0, 0.72);
}

.retailer-v2-rights-col:first-child span::after {
  right: -25px;
}

.retailer-v2-rights-col:last-child span::after {
  left: -25px;
}

.retailer-v2-rights-visual {
  padding: 16px;
}

.retailer-v2-rights-visual img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.retailer-v2-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.retailer-v2-process article {
  position: relative;
  min-height: 284px;
  padding: 20px 16px;
}

.retailer-v2-process article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  width: 24px;
  height: 16px;
  background: var(--yellow-strong);
  clip-path: polygon(0 36%, 65% 36%, 65% 0, 100% 50%, 65% 100%, 65% 64%, 0 64%);
  transform: translateY(-50%);
  z-index: 2;
}

.retailer-v2-process b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--yellow-strong);
  color: #fff;
  font-size: 18px;
}

.retailer-v2-process img {
  width: 82px;
  height: 78px;
  display: block;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: contain;
}

.retailer-v2-process h3 {
  font-size: 18px;
}

.retailer-v2-process p {
  font-size: 13px;
}

.retailer-v2-cta-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.retailer-v2-cta {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 209, 45, 0.68), rgba(255, 250, 240, 0.78) 46%, rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 26px 78px rgba(52, 42, 0, 0.16);
}

.retailer-v2-cta-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.retailer-v2-cta-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.15;
}

.retailer-v2-cta-visual {
  width: min(390px, 100%);
  padding: 10px;
}

.retailer-v2-cta-visual img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.retailer-v2-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.66);
}

.retailer-v2-form label {
  display: grid;
  gap: 8px;
  color: #2f2a1b;
  font-weight: 900;
}

.retailer-v2-form .form-wide {
  grid-column: 1 / -1;
}

.retailer-v2-form .primary-btn {
  border: 0;
  justify-content: center;
}

@media (max-width: 1180px) {
  .retailer-v2-hero-copy {
    width: min(540px, 54%);
    padding-left: 38px;
  }

  .retailer-v2-flow-strip {
    left: 28px;
    right: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .retailer-v2-advantage-grid,
  .retailer-v2-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retailer-v2-why-layout,
  .retailer-v2-rights,
  .retailer-v2-cta {
    grid-template-columns: 1fr;
  }

  .retailer-v2-why-visual {
    min-height: auto;
  }

  .retailer-v2-rights-col span::after {
    display: none;
  }

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

  .retailer-v2-process article:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .retailer-v2-hero-card {
    min-height: auto;
    padding: 28px;
  }

  .retailer-v2-hero-image {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border-radius: 8px;
    object-position: center;
  }

  .retailer-v2-hero-card::before {
    display: none;
  }

  .retailer-v2-hero-copy {
    width: 100%;
    padding: 0;
  }

  .retailer-v2-flow-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .retailer-v2-process article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .retailer-v2-hero {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .retailer-v2-main {
    overflow-x: hidden;
  }

  .retailer-v2-hero-card,
  .retailer-v2-cta {
    padding: 16px;
  }

  .retailer-v2-flow-strip,
  .retailer-v2-advantage-grid,
  .retailer-v2-value-grid,
  .retailer-v2-process,
  .retailer-v2-form {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .retailer-v2-flow-strip span {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .retailer-v2-section,
  .retailer-v2-cta-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .retailer-v2-card,
  .retailer-v2-value-card,
  .retailer-v2-process article {
    min-height: auto;
    padding: 20px;
  }

  .retailer-v2-form .form-wide {
    grid-column: 1;
  }

  .retailer-v2-hero-copy h1,
  .retailer-v2-cta-copy h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .retailer-v2-hero-copy h1 {
    max-width: 100%;
  }

  .retailer-v2-desktop-break {
    display: none;
  }

  .retailer-v2-mobile-break {
    display: block;
  }

  .retailer-v2-main h1,
  .retailer-v2-main h2,
  .retailer-v2-main h3,
  .retailer-v2-main p,
  .retailer-v2-main span,
  .retailer-v2-main label {
    word-break: break-all;
    white-space: normal;
  }

  .retailer-v2-hero-copy h1 br {
    display: none;
  }
}

@media (max-width: 1180px) {
  .section-pad,
  .footer,
  .topbar {
    width: min(100% - 32px, 960px);
  }

  .home-hero-section {
    width: min(100% - 32px, 960px);
  }

  .slide {
    gap: 32px;
  }

  .dashboard-card {
    width: min(400px, 78%);
  }

  .home-hero-visual {
    width: min(570px, 100%);
  }

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

  .home-hero-flow article:nth-child(2)::after {
    display: none;
  }

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

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

  .retailer-pain-grid,
  .retailer-benefit-grid,
  .retailer-flow-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .retailer-flow-line article:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    top: 10px;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-bottom: 4px;
  }

  .nav-links a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .slide,
  .recycler-hero-grid,
  .recycler-choose,
  .intro-section,
  .map-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .slide {
    gap: 34px;
    padding: 38px 28px 30px;
  }

  .saas-stage {
    min-height: 560px;
  }

  .home-hero-visual {
    right: 0;
    width: 100%;
  }

  .dashboard-card {
    right: 0;
    top: 34px;
    width: min(560px, 100%);
    transform: none;
  }

  .hero-mascot {
    left: 12px;
    bottom: 4px;
    width: min(290px, 45vw);
  }

  .chip-a { left: 18px; top: 0; }
  .chip-b { right: 8px; top: 10px; }
  .chip-c { left: 32px; top: 360px; }
  .chip-d { right: 8px; bottom: 92px; }
  .chip-e { left: 214px; bottom: 20px; }

  .pain-grid,
  .solution-grid,
  .article-grid,
  .case-grid,
  .partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    gap: 18px;
  }

  .qr-row {
    max-width: 560px;
  }

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

  .retailer-solution-layout {
    grid-template-columns: 1fr;
  }

  .recycler-flow-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

  .recycler-flow-timeline::before {
    display: none;
  }

  .flow-list article:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .section-pad {
    width: min(calc(100vw - 24px), 680px);
    padding: 44px 0;
  }

  .topbar,
  .footer {
    width: calc(100vw - 24px);
  }

  .topbar {
    margin-top: 10px;
    padding: 10px;
  }

  .brand img,
  .footer-brand img {
    width: 112px;
    height: 44px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    white-space: normal;
  }

  .nav-links a {
    min-width: 0;
    justify-content: center;
    border-radius: 8px;
    padding: 9px 6px;
    background: rgba(255, 255, 255, 0.42);
    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
  }

  .nav-links a.is-active {
    background: var(--yellow);
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.7), inset -3px -3px 7px rgba(162, 128, 0, 0.18);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .home-hero-section {
    width: calc(100% - 24px);
    padding-top: 32px;
    padding-bottom: 54px;
  }

  .home-hero-section .hero-bg-grid {
    inset: 8px -8px 140px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  h3 {
    font-size: 20px;
  }

  .subtitle-stack p,
  .lead {
    font-size: 17px;
  }

  .pain-grid,
  .solution-grid,
  .advantage-grid,
  .recycler-advantage-grid,
  .fit-grid,
  .retailer-pain-grid,
  .retailer-benefit-grid,
  .retailer-solution-list,
  .retailer-flow-line,
  .article-grid,
  .case-grid,
  .partner-row,
  .academy-card,
  [data-login-form],
  .join-form,
  .intro-stats,
  .case-metrics,
  .signup-preview,
  .qr-row,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .issue-card,
  .solution-card,
  .article-card,
  .case-card,
  .recycler-advantage-card,
  .retailer-icon-card,
  .recycler-feature-card,
  .fit-card {
    padding: 20px;
  }

  .hero-bg-grid {
    inset: 8px -8px 18px;
  }

  .carousel-tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    padding-inline: 10px;
    font-size: 14px;
  }

  .saas-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .slides {
    min-height: auto;
  }

  .slide {
    padding: 26px 16px 22px;
  }

  .home-hero-visual {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
  }

  .dashboard-card {
    position: relative;
    top: auto;
    right: auto;
    order: 1;
    width: 100%;
    padding: 18px;
    transform: none;
  }

  .hero-mascot {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;
    justify-self: center;
    width: min(280px, 76vw);
    transform: none;
  }

  .orbit-chip {
    position: static;
    order: 3;
    justify-self: stretch;
    text-align: center;
    font-size: 13px;
    padding: 10px 12px;
  }

  .chip-a,
  .chip-b,
  .chip-c,
  .chip-d,
  .chip-e {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

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

  .home-mini-points,
  .home-hero-flow {
    grid-template-columns: 1fr;
  }

  .home-hero-flow article {
    grid-template-columns: 62px 1fr;
    min-height: 96px;
  }

  .home-hero-flow article:not(:last-child)::after {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 34px;
  }

  .dashboard-top,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .recycler-hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .retailer-hero {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .retailer-pain-section,
  .retailer-solution-section,
  .retailer-benefit-section,
  .retailer-flow-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .retailer-section-head {
    margin-bottom: 18px;
  }

  .retailer-icon-card {
    min-height: 130px;
  }

  .retailer-solution-list article {
    min-height: auto;
  }

  .retailer-hero-content,
  .retailer-cta-content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 24px 18px 28px;
    transform: none;
  }

  .retailer-design-banner,
  .retailer-cta-banner {
    background: rgba(255, 255, 255, 0.62);
  }

  .retailer-cta-banner {
    background: #111;
  }

  .retailer-hero-content h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .recycler-hero-grid {
    gap: 28px;
  }

  .hero-badges,
  .benefit-pills {
    grid-template-columns: 1fr;
    display: grid;
  }

  .flow-list {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .recycler-flow-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .retailer-flow-line article:not(:last-child)::after {
    display: none;
  }

  .recycler-flow-timeline article {
    grid-template-columns: 44px 72px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
  }

  .recycler-flow-timeline img {
    margin-top: 0;
  }

  .recycler-flow-timeline h3 {
    justify-self: start;
  }

  .recycler-flow-timeline p {
    max-width: none;
    grid-column: 3;
  }

  .flow-list article {
    min-height: auto;
    text-align: left;
  }

  .flow-list article:not(:last-child)::after {
    display: none;
  }

  .flow-list img {
    margin-left: 0;
  }

  .recycler-cta {
    min-height: 430px;
  }

  .recycler-cta::after {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.68));
  }

  .cta-content {
    width: 100%;
    padding: 30px 22px;
  }

  .recycler-apply-form {
    grid-template-columns: 1fr;
  }

  .meeting-panel,
  .video-card,
  .map-card {
    padding: 12px;
  }

  .video-screen {
    min-height: 250px;
  }

  .map-stats,
  .intro-stats,
  .case-metrics {
    gap: 10px;
  }

  .partner-row {
    gap: 10px;
  }

  .partner-row span {
    min-height: 72px;
  }

  .partner-row img {
    max-height: 52px;
  }

  .academy-tabs,
  .login-role-tabs,
  .login-method-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .login-role-tabs,
  .login-method-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-tabs button,
  .login-role-tabs button,
  .login-method-tabs button {
    padding: 0 8px;
  }

  .academy-card {
    gap: 14px;
  }

  .academy-card .article-thumb {
    height: 190px;
  }

  .qr-login-box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer {
    padding: 20px;
  }

  .qr-row img {
    width: 108px;
    height: 108px;
  }

  .modal-panel {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .section-pad,
  .topbar,
  .footer {
    width: min(calc(100vw - 24px), 366px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .retailer-v2-hero-copy p,
  .retailer-v2-card p,
  .retailer-v2-value-card p,
  .retailer-v2-process p,
  .retailer-v2-cta-copy p {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 420px) {
  .section-pad {
    width: min(calc(100vw - 20px), 366px);
    padding: 38px 0;
  }

  .topbar,
  .footer {
    width: min(calc(100vw - 20px), 366px);
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .recycler-hero-copy h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .carousel-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-top {
    gap: 8px;
  }

  .dashboard-top strong {
    font-size: 24px;
  }

  .scan-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-thumb {
    height: 150px;
  }

  .academy-hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .article-page-card {
    padding: 22px;
  }

  .modal-panel {
    width: calc(100vw - 20px);
  }
}

@media (max-width: 980px) {
  .academy-v2-hero-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .academy-v2-hero-visual {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .academy-v2-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 760px) {
  .academy-v2-page .section-pad {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .academy-v2-hero {
    padding-top: 22px;
  }

  .academy-v2-hero-card {
    padding: 16px;
  }

  .academy-v2-hero-copy h1 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .academy-v2-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-v2-grid {
    grid-template-columns: 1fr;
  }

  .academy-v2-card {
    min-height: auto;
  }

  .academy-v2-card .article-thumb {
    height: 190px;
  }

  .academy-v2-card .academy-card-body {
    padding: 20px;
  }

  .academy-v2-card .academy-card-body h3 {
    min-height: auto;
  }
}
