:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0c0c0c;
  --panel-strong: #111111;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f4f4f4;
  --muted: #a5a5a5;
  --soft: #747474;
  --ink: #050505;
  --shadow: rgba(0, 0, 0, 0.44);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #f6f7f9;
  --panel-strong: #ffffff;
  --line: rgba(9, 12, 18, 0.12);
  --line-strong: rgba(9, 12, 18, 0.24);
  --text: #050505;
  --muted: #5f6672;
  --soft: #7c8491;
  --ink: #ffffff;
  --shadow: rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 56px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .hero-canvas,
html[data-theme="light"] .visual-panel canvas {
  filter: invert(1);
}

html[data-theme="light"] .grain {
  opacity: 0.2;
  mix-blend-mode: multiply;
}

html[data-theme="light"] .hero-frame {
  border-color: rgba(9, 12, 18, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #f7f7f7, #9d9d9d);
  color: #090909;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-name {
  font-weight: 720;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
}

.nav-button {
  justify-self: end;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  display: inline-grid;
  grid-template-columns: 1fr;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle svg {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  transition: opacity 180ms ease, transform 180ms ease;
}

html[data-theme="light"] .theme-moon,
html[data-theme="dark"] .theme-sun {
  opacity: 0;
  transform: scale(0.74) rotate(-18deg);
}

html[data-theme="light"] .theme-sun,
html[data-theme="dark"] .theme-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--text);
  background: rgba(127, 127, 127, 0.12);
  transform: translateY(-1px);
}

.nav-button:hover,
.nav-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88svh;
  overflow: hidden;
  padding: 112px 24px 96px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-canvas,
.grain,
.hero-frame {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  z-index: -3;
  width: 100%;
  height: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
}

.grain {
  z-index: -2;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.06), transparent 26%),
    radial-gradient(circle at 70% 64%, rgba(255, 255, 255, 0.035), transparent 30%);
  mix-blend-mode: screen;
}

.hero-frame {
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  margin: 84px 36px 28px;
  pointer-events: none;
}

.hero-content {
  width: min(980px, 100%);
  text-align: center;
}

.system-kicker,
.section-index {
  margin: 0;
  color: var(--muted);
  font-family: "SF Mono", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.system-kicker::before,
.section-index::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: #d8d8d8;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
  vertical-align: 1px;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 1080px;
  margin: 28px auto 0;
  color: #ffffff;
  font-size: 4.05rem;
  line-height: 1.12;
  font-weight: 780;
}

html[data-theme="light"] h1 {
  color: #050505;
}

h1 span {
  display: block;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 178px;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, #dddddd 48%, #a8a8a8 100%);
  color: var(--ink);
  font-weight: 740;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(255, 255, 255, 0.08), 0 18px 48px var(--shadow);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

html[data-theme="light"] .primary-button {
  border-color: rgba(5, 5, 5, 0.86);
  background: linear-gradient(180deg, #151515 0%, #050505 100%);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
}

html[data-theme="light"] .primary-button::after {
  border-color: rgba(255, 255, 255, 0.16);
}

.primary-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.12), 0 24px 64px var(--shadow);
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.scroll-line {
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.scroll-line::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #ffffff;
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-18px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(48px);
    opacity: 0;
  }
}

.features {
  padding: 32px 56px 48px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
  width: min(1180px, 100%);
  min-height: 540px;
  margin: 0 auto 72px;
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .visual-panel {
  order: 1;
}

.feature-copy h2 {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 2.4rem;
  line-height: 1.18;
  font-weight: 760;
}

.feature-text {
  max-width: 600px;
  margin: 26px 0 0;
  color: #d9d9d9;
  font-size: 1.24rem;
  line-height: 1.86;
}

.visual-panel {
  position: relative;
  min-height: 360px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 4px);
  opacity: 0.54;
}

.visual-panel:hover,
.visual-panel:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.48), 0 0 48px rgba(255, 255, 255, 0.05);
}

.visual-panel canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.panel-readout {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "SF Mono", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.72fr);
  gap: 56px;
  align-items: start;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto 96px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.waitlist-section h2,
.waitlist-dialog h2,
.auth-dialog h2 {
  margin: 18px 0 0;
  font-size: 2.24rem;
}

.waitlist-copy,
.waitlist-dialog p,
.auth-dialog p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.waitlist-form,
.dialog-shell,
.auth-form,
.feedback-panel {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
  line-height: 1.7;
}

select option {
  color: #111111;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.56);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status,
.dialog-status {
  min-height: 24px;
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
}

.waitlist-dialog {
  width: min(520px, calc(100% - 32px));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #0a0a0a;
  color: var(--text);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.68);
}

.waitlist-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  padding: 22px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.auth-tab,
.code-button,
.wechat-button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.auth-tab.is-active,
.auth-tab:hover,
.auth-tab:focus-visible,
.code-button:hover,
.code-button:focus-visible,
.wechat-button:hover,
.wechat-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.wechat-button {
  width: 100%;
  font-weight: 720;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 0.86rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px;
  gap: 10px;
  align-items: end;
}

.code-button {
  padding: 0 12px;
}

.auth-note {
  margin: -2px 0 0;
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.feedback-panel {
  grid-template-columns: minmax(0, 1fr) 160px;
  align-items: start;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.qr-code {
  display: block;
  width: 132px;
  height: 132px;
}

.qr-card p,
.qr-card span {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.qr-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[data-theme="light"] .nav-button,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea,
html[data-theme="light"] .auth-tab,
html[data-theme="light"] .code-button,
html[data-theme="light"] .wechat-button,
html[data-theme="light"] .qr-card {
  background: rgba(5, 5, 5, 0.035);
}

html[data-theme="light"] .feature-text {
  color: #374151;
}

html[data-theme="light"] .system-kicker::before,
html[data-theme="light"] .section-index::before {
  background: #101010;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .scroll-line {
  background: rgba(9, 12, 18, 0.16);
}

html[data-theme="light"] .scroll-line::after {
  background: #050505;
}

html[data-theme="light"] .visual-panel {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.035), rgba(5, 5, 5, 0.01)), var(--panel);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .visual-panel::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.05), transparent 20%, transparent 80%, rgba(5, 5, 5, 0.04)),
    repeating-linear-gradient(0deg, rgba(5, 5, 5, 0.026) 0 1px, transparent 1px 4px);
}

html[data-theme="light"] .visual-panel:hover,
html[data-theme="light"] .visual-panel:focus-visible {
  border-color: rgba(5, 5, 5, 0.32);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

html[data-theme="light"] .panel-readout {
  color: rgba(5, 5, 5, 0.62);
}

html[data-theme="light"] .waitlist-section {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.035), rgba(5, 5, 5, 0.012));
}

html[data-theme="light"] input:focus,
html[data-theme="light"] select:focus,
html[data-theme="light"] textarea:focus {
  border-color: rgba(5, 5, 5, 0.46);
}

html[data-theme="light"] .form-status,
html[data-theme="light"] .dialog-status {
  color: #111827;
}

html[data-theme="light"] .waitlist-dialog {
  background: #ffffff;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.24);
}

html[data-theme="light"] .waitlist-dialog::backdrop {
  background: rgba(248, 250, 252, 0.72);
}

html[data-theme="light"] .auth-tabs {
  background: rgba(5, 5, 5, 0.035);
}

html[data-theme="light"] .auth-tab.is-active,
html[data-theme="light"] .auth-tab:hover,
html[data-theme="light"] .auth-tab:focus-visible,
html[data-theme="light"] .code-button:hover,
html[data-theme="light"] .code-button:focus-visible,
html[data-theme="light"] .wechat-button:hover,
html[data-theme="light"] .wechat-button:focus-visible {
  border-color: rgba(5, 5, 5, 0.42);
  background: rgba(5, 5, 5, 0.08);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .desktop-nav {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .features {
    padding: 44px 24px 32px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    margin-bottom: 82px;
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .visual-panel {
    order: initial;
  }

  .visual-panel {
    min-height: 330px;
  }

  .waitlist-section {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    padding: 36px;
  }

  .feedback-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand-name {
    display: none;
  }

  .nav-button {
    min-height: 38px;
    padding: 0 16px;
  }

  .hero {
    min-height: 88svh;
    padding: 92px 18px 72px;
  }

  .hero-frame {
    margin: 72px 14px 20px;
  }

  h1 {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .primary-button {
    width: min(100%, 260px);
    min-height: 50px;
  }

  .features {
    padding: 38px 18px 18px;
  }

  .feature-copy h2 {
    font-size: 1.72rem;
  }

  .feature-text {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .visual-panel {
    min-height: 240px;
  }

  .panel-readout {
    flex-direction: column;
    gap: 4px;
  }

  .waitlist-section {
    width: calc(100% - 36px);
    margin-bottom: 64px;
    padding: 26px;
  }

  .waitlist-section h2,
  .waitlist-dialog h2 {
    font-size: 1.7rem;
  }

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

  .qr-card {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* ALPHA_KK_FLOATING_CUSTOMER_SERVICE */
.customer-service {
  position: fixed;
  right: clamp(16px, 2.4vw, 32px);
  bottom: clamp(16px, 2.4vw, 32px);
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.customer-service-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 88px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(12, 12, 12, 0.88);
  color: #fff;
  font-weight: 760;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.customer-service-trigger:hover,
.customer-service-trigger:focus-visible,
.customer-service-trigger[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(26, 26, 26, 0.96);
  transform: translateY(-2px);
}

.customer-service-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.customer-service-panel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(320px, calc(100vw - 32px));
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 24px;
  background: rgba(10, 10, 10, 0.96);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
  animation: customerPanelIn 220ms ease both;
}

.customer-service-panel[hidden] { display: none; }

.customer-service-panel h2 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 1.35rem;
}

.customer-service-panel > p:not(.section-index) {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.customer-service-panel > strong,
.customer-service-panel > span {
  display: block;
  text-align: center;
}

.customer-service-panel > strong {
  margin-top: 12px;
  color: var(--text);
}

.customer-service-panel > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.customer-service-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
}

.customer-service-qr {
  display: block;
  width: 164px;
  height: 164px;
  margin: 0 auto;
  border: 10px solid #fff;
  background: #fff;
}

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

html[data-theme="light"] .customer-service-trigger {
  border-color: rgba(9, 12, 18, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: #111;
}

html[data-theme="light"] .customer-service-icon {
  background: #111;
  color: #fff;
}

html[data-theme="light"] .customer-service-panel {
  background: rgba(255, 255, 255, 0.97);
  color: #111;
}

html[data-theme="light"] .customer-service-panel h2,
html[data-theme="light"] .customer-service-panel > strong { color: #111; }
