:root {
  --refresh-ink: #08283a;
  --refresh-muted: #5c7281;
  --refresh-line: #d9e5e7;
  --refresh-paper: #ffffff;
  --refresh-mist: #f0f7f6;
  --refresh-teal: #087f78;
  --refresh-blue: #1e6ee8;
  --refresh-coral: #f05f4b;
  --refresh-navy: #061f2e;
  --refresh-shell: min(1180px, calc(100% - 40px));
}

body.home-refresh {
  margin: 0;
  color: var(--refresh-ink);
  background: var(--refresh-paper);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  letter-spacing: 0;
}

.home-refresh *,
.home-refresh *::before,
.home-refresh *::after {
  box-sizing: border-box;
}

.home-refresh a {
  color: inherit;
  text-decoration: none;
}

.home-refresh img {
  display: block;
  max-width: 100%;
}

.refresh-shell {
  width: var(--refresh-shell);
  margin-inline: auto;
}

.refresh-top-strip {
  color: #c8e3e5;
  background: var(--refresh-navy);
  font-size: 13px;
}

.refresh-top-strip .refresh-shell {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.refresh-top-strip strong {
  color: #8ce7d2;
}

.refresh-top-strip span:last-child {
  color: #9ab8bf;
}

.refresh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(8, 40, 58, .08);
  backdrop-filter: blur(12px);
}

.refresh-header-inner {
  height: 76px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
}

.refresh-brand img {
  width: 154px;
  height: auto;
}

.refresh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.refresh-nav a {
  padding: 12px 16px;
  color: #385361;
  border-bottom: 2px solid transparent;
  font-size: 15px;
  transition: color .2s ease, border-color .2s ease;
}

.refresh-nav a:hover,
.refresh-nav a:focus-visible,
.refresh-nav a.is-current {
  color: var(--refresh-teal);
  border-color: var(--refresh-teal);
}

.refresh-header-action,
.refresh-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-refresh .refresh-header-action,
.home-refresh .refresh-button-store {
  color: #fff;
  background: var(--refresh-teal);
}

.refresh-header-action:hover,
.refresh-button:hover,
.refresh-header-action:focus-visible,
.refresh-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(5, 59, 69, .18);
}

.refresh-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--refresh-line);
  background: #fff;
}

.refresh-menu-button span {
  width: 20px;
  height: 2px;
  background: var(--refresh-ink);
}

.home-refresh .mobile-menu-panel {
  z-index: 80;
}

.home-refresh .mobile-menu-overlay {
  z-index: 70;
}

.refresh-hero {
  min-height: 570px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 37, 49, .86) 0%, rgba(3, 59, 65, .68) 44%, rgba(3, 37, 49, .08) 74%),
    url("../img/haoka-operations-hero.webp") center / cover no-repeat;
}

.refresh-hero-copy {
  width: min(620px, 56%);
  padding: 80px 0 92px;
}

.refresh-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ff2db;
  font-size: 14px;
  font-weight: 700;
}

.refresh-kicker::before {
  width: 34px;
  height: 2px;
  content: "";
  background: #8deccf;
}

.refresh-hero h1 {
  margin: 24px 0 22px;
  color: #fff;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.04;
}

.refresh-hero p {
  max-width: 600px;
  margin: 0;
  color: #d8ecee;
  font-size: 17px;
  line-height: 1.85;
}

.refresh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-refresh .refresh-button-primary {
  color: #fff;
  background: var(--refresh-coral);
}

.home-refresh .refresh-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(1, 27, 37, .24);
}

.refresh-button-secondary:hover,
.refresh-button-secondary:focus-visible {
  background: rgba(255, 255, 255, .12);
}

.refresh-advantage-rail {
  color: #fff;
  background: var(--refresh-navy);
}

.refresh-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.refresh-advantage-item {
  min-height: 128px;
  position: relative;
  padding: 27px 28px 24px;
  overflow: hidden;
  border-left: 1px solid #214555;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.refresh-advantage-item:last-child {
  border-right: 1px solid #214555;
}

.refresh-advantage-item::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 110px;
  height: 110px;
  content: "";
  border: 1px solid rgba(89, 226, 187, .18);
  border-radius: 50%;
  transition: transform .3s ease, border-color .3s ease;
}

.refresh-advantage-mark {
  width: 32px;
  height: 3px;
  display: block;
  margin-bottom: 14px;
  background: #58e1ba;
  transition: width .22s ease, background .22s ease;
}

.refresh-advantage-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.refresh-advantage-item small {
  color: #9ab5bc;
  line-height: 1.6;
}

@media (hover: hover) {
  .refresh-advantage-item:hover {
    z-index: 1;
    transform: translateY(-7px);
    background: #0b3041;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
  }

  .refresh-advantage-item:hover .refresh-advantage-mark {
    width: 54px;
    background: #8deccf;
  }

  .refresh-advantage-item:hover::after {
    transform: translate(-12px, -12px) scale(1.12);
    border-color: rgba(89, 226, 187, .42);
  }
}

.refresh-advantage-item:active {
  transform: translateY(-3px) scale(.99);
  background: #0b3041;
}

.refresh-section {
  padding: 86px 0;
}

.refresh-section-soft {
  background: var(--refresh-mist);
}

.refresh-section-heading {
  margin-bottom: 34px;
}

.refresh-eyebrow {
  color: var(--refresh-teal);
  font-size: 13px;
  font-weight: 800;
}

.refresh-section-heading h2,
.refresh-operations-intro h2 {
  margin: 10px 0 0;
  color: var(--refresh-ink);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
}

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

.refresh-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--refresh-line);
  border-top: 4px solid var(--operator, var(--refresh-teal));
  border-radius: 6px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.refresh-product-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border-bottom: 1px solid var(--refresh-line);
}

.refresh-product-body {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.refresh-product-body span {
  color: var(--operator);
  font-size: 13px;
  font-weight: 800;
}

.refresh-product-body h3 {
  margin: 8px 0 10px;
  color: var(--refresh-ink);
  font-size: 21px;
}

.refresh-product-body p {
  margin: 0;
  color: var(--refresh-muted);
  font-size: 14px;
  line-height: 1.7;
}

.refresh-product-body b {
  margin-top: auto;
  padding-top: 20px;
  color: var(--refresh-teal);
  font-size: 14px;
}

@media (hover: hover) {
  .refresh-product-card:hover {
    transform: translateY(-6px);
    border-color: var(--operator);
    box-shadow: 0 18px 36px rgba(12, 55, 68, .12);
  }
}

.refresh-product-card:active {
  transform: translateY(-2px) scale(.995);
}

.refresh-product-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--refresh-line);
}

.refresh-operations-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
  gap: 70px;
}

.refresh-operations-intro > p {
  margin: 18px 0 0;
  color: var(--refresh-muted);
  line-height: 1.85;
}

.refresh-capability-list {
  margin-top: 34px;
  border-top: 1px solid var(--refresh-line);
}

.refresh-capability-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--refresh-line);
}

.refresh-capability-row > span {
  color: var(--refresh-blue);
  font-weight: 800;
}

.refresh-capability-row strong {
  display: block;
  margin-bottom: 5px;
}

.refresh-capability-row p {
  margin: 0;
  color: var(--refresh-muted);
  font-size: 14px;
}

.refresh-capability-row b {
  color: #91a8af;
  font-size: 20px;
}

.refresh-knowledge-panel {
  padding: 34px;
  color: #fff;
  background: var(--refresh-navy);
  border-radius: 6px;
}

.refresh-knowledge-panel h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
}

.refresh-knowledge-panel > p {
  margin: 0 0 28px;
  color: #a9c3ca;
  line-height: 1.75;
}

.refresh-article-link {
  display: block;
  padding: 18px 0;
  border-top: 1px solid #244655;
}

.refresh-article-link span {
  color: #6ce0bd;
  font-size: 12px;
  font-weight: 800;
}

.refresh-article-link strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  line-height: 1.5;
}

.refresh-article-link:hover strong,
.refresh-article-link:focus-visible strong {
  color: #8deccf;
}

.home-refresh .refresh-knowledge-button {
  margin-top: 22px;
  color: var(--refresh-navy);
  background: #fff;
}

.refresh-partners {
  padding: 64px 0;
  scroll-margin-top: 110px;
  background: #fff;
}

.refresh-partners h2 {
  margin: 0 0 36px;
  text-align: center;
  font-size: 30px;
}

.refresh-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 46px;
}

.refresh-partner-grid div {
  min-height: 70px;
  display: grid;
  place-items: center;
}

.refresh-partner-grid img {
  width: 170px;
  max-height: 56px;
  object-fit: contain;
  opacity: .82;
  filter: grayscale(.18);
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}

@media (hover: hover) {
  .refresh-partner-grid div:hover img {
    transform: translateY(-4px) scale(1.03);
    opacity: 1;
    filter: none;
  }
}

.refresh-footer {
  color: #c8dce0;
  background: var(--refresh-navy);
}

.refresh-footer-main {
  display: grid;
  grid-template-columns: 1.6fr .75fr .75fr;
  gap: 70px;
  padding: 64px 0;
}

.refresh-footer-brand img {
  width: 176px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.refresh-footer-brand p {
  max-width: 630px;
  margin: 20px 0 0;
  color: #a9c0c6;
  line-height: 1.9;
}

.refresh-footer-column h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 17px;
}

.refresh-footer-column a {
  display: block;
  margin: 14px 0;
  color: #a9c0c6;
}

.refresh-footer-column a:hover,
.refresh-footer-column a:focus-visible {
  color: #78e4c5;
}

.refresh-footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7897a0;
  border-top: 1px solid #244655;
  font-size: 13px;
}

.refresh-mobile-actions {
  display: none;
}

@media (max-width: 980px) {
  .refresh-header-inner {
    grid-template-columns: 1fr auto;
  }

  .refresh-nav,
  .refresh-header-action {
    display: none;
  }

  .refresh-menu-button {
    display: grid;
  }

  .refresh-hero-copy {
    width: min(680px, 78%);
  }

  .refresh-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .refresh-operations-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .refresh-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .refresh-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --refresh-shell: min(100% - 28px, 1180px);
  }

  body.home-refresh {
    padding-bottom: 68px;
  }

  .refresh-top-strip .refresh-shell {
    justify-content: center;
    text-align: center;
  }

  .refresh-top-strip span:last-child {
    display: none;
  }

  .refresh-header-inner {
    height: 66px;
  }

  .refresh-brand img {
    width: 132px;
  }

  .refresh-hero {
    min-height: 610px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(3, 37, 49, .10) 0%, rgba(3, 37, 49, .72) 48%, rgba(3, 37, 49, .95) 100%),
      url("../img/haoka-operations-hero.webp") 64% center / cover no-repeat;
  }

  .refresh-hero-copy {
    width: 100%;
    padding: 210px 0 50px;
  }

  .refresh-hero h1 {
    margin-bottom: 18px;
    font-size: 48px;
  }

  .refresh-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .refresh-hero-actions .refresh-button {
    flex: 1;
    padding-inline: 12px;
  }

  .refresh-advantage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .refresh-advantage-item {
    min-height: 132px;
    padding: 22px 16px;
    border-bottom: 1px solid #214555;
  }

  .refresh-advantage-item strong {
    font-size: 16px;
  }

  .refresh-advantage-item small {
    font-size: 12px;
  }

  .refresh-section {
    padding: 62px 0;
  }

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

  .refresh-product-body {
    min-height: 205px;
  }

  .refresh-product-footer {
    align-items: stretch;
  }

  .refresh-product-footer .refresh-button {
    width: 100%;
  }

  .refresh-capability-row {
    grid-template-columns: 48px 1fr auto;
  }

  .refresh-knowledge-panel {
    padding: 26px 22px;
  }

  .refresh-partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 18px;
  }

  .refresh-partner-grid img {
    width: 135px;
  }

  .refresh-footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .refresh-footer-brand {
    grid-column: auto;
  }

  .refresh-footer-bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .refresh-mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    height: 68px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    background: #fff;
    border-top: 1px solid var(--refresh-line);
  }

  .refresh-mobile-actions a {
    display: grid;
    place-items: center;
    font-weight: 800;
  }

  .refresh-mobile-actions a:last-child {
    color: #fff;
    background: var(--refresh-teal);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-refresh *,
  .home-refresh *::before,
  .home-refresh *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.refresh-footer-main {
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(130px, .6fr));
  gap: 48px;
}

.refresh-footer-contact h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
}

.refresh-footer-contact img {
  display: block;
  width: 150px;
  height: auto;
  padding: 5px;
  border-radius: 6px;
  background: #fff;
}

.refresh-footer-contact {
  min-width: 0;
  align-self: start;
}

@media (max-width: 980px) {
  .refresh-footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .refresh-footer-main {
    grid-template-columns: 1fr;
  }

  .refresh-footer-contact img {
    width: 150px;
  }
}
