:root {
  color-scheme: dark;
  --wc-bg: #07101d;
  --wc-bg-soft: #0c1728;
  --wc-surface: #111d31;
  --wc-surface-soft: rgba(255, 255, 255, 0.04);
  --wc-line: rgba(255, 255, 255, 0.1);
  --wc-line-strong: rgba(95, 190, 255, 0.24);
  --wc-text: #eef5fb;
  --wc-muted: #9fb2c7;
  --wc-primary: #3eb0ff;
  --wc-primary-deep: #0c83e2;
  --wc-success: #32d09b;
  --wc-warning: #ffb347;
  --wc-danger: #ff6b6b;
  --wc-shadow: 0 24px 60px rgba(3, 11, 24, 0.36);
  --wc-radius-xl: 28px;
  --wc-radius-lg: 22px;
  --wc-radius-md: 16px;
  --wc-shell-width: min(100% - 28px, 1120px);
  --wc-font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --wc-font-display: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--wc-font-body);
  background:
    radial-gradient(circle at top left, rgba(62, 176, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(50, 208, 155, 0.1), transparent 28%),
    linear-gradient(180deg, #08111f 0%, #050b14 100%);
  color: var(--wc-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.wc-app-shell {
  width: var(--wc-shell-width);
  margin: 0 auto;
  padding: max(16px, env(safe-area-inset-top)) 0 calc(32px + env(safe-area-inset-bottom));
}

.wc-status-shell {
  margin-bottom: 18px;
}

.wc-runtime-strip,
.wc-status-card,
.wc-card,
.wc-list-card,
.wc-summary-card,
.wc-account-card,
.wc-auth-card {
  border: 1px solid var(--wc-line);
  background:
    linear-gradient(180deg, rgba(18, 31, 50, 0.92), rgba(11, 21, 36, 0.98)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--wc-shadow);
}

.wc-runtime-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 18px;
}

.wc-runtime-copy {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wc-runtime-copy > div {
  display: grid;
  gap: 4px;
}

.wc-runtime-copy strong {
  font-family: var(--wc-font-display);
  font-size: 15px;
}

.wc-runtime-copy p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.55;
}

.wc-inline-retry {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--wc-text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.wc-inline-retry:hover {
  background: rgba(255, 255, 255, 0.08);
}

.wc-status-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--wc-radius-lg);
}

.wc-status-card strong,
.wc-card h2,
.wc-card h3,
.wc-list-card h2,
.wc-list-title,
.wc-auth-title,
.wc-page-hero h1,
.wc-panel-brand strong {
  font-family: var(--wc-font-display);
}

.wc-status-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.wc-status-card p,
.wc-status-inline-copy,
.wc-page-hero p,
.wc-auth-copy,
.wc-card-copy,
.wc-item-copy,
.wc-empty-state p {
  margin: 0;
  color: var(--wc-muted);
  line-height: 1.65;
  font-size: 14px;
}

.wc-status-card--loading {
  border-color: rgba(62, 176, 255, 0.26);
}

.wc-status-card--error {
  border-color: rgba(255, 107, 107, 0.24);
}

.wc-status-indicator {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--wc-primary);
  box-shadow: 0 0 0 0 rgba(62, 176, 255, 0.55);
  animation: wcPulse 2s infinite;
  flex: 0 0 auto;
  margin-top: 3px;
}

.wc-status-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}

.wc-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-status-chip.is-success {
  background: rgba(50, 208, 155, 0.14);
  border-color: rgba(50, 208, 155, 0.22);
  color: #b9ffe3;
}

.wc-status-chip.is-primary {
  background: rgba(62, 176, 255, 0.14);
  border-color: rgba(62, 176, 255, 0.24);
  color: #d7efff;
}

.wc-status-chip.is-warning {
  background: rgba(255, 179, 71, 0.14);
  border-color: rgba(255, 179, 71, 0.24);
  color: #ffe2b2;
}

.wc-status-chip.is-danger {
  background: rgba(255, 107, 107, 0.14);
  border-color: rgba(255, 107, 107, 0.24);
  color: #ffd3d3;
}

.wc-status-chip.is-muted {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: #dce7f2;
}

.wc-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 2px 20px;
}

.wc-panel-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wc-panel-brand-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #69d0ff, #37a9f9);
  color: #06111d;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 18px 28px rgba(32, 126, 197, 0.28);
}

.wc-panel-brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.wc-panel-brand small {
  color: var(--wc-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-panel-account {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wc-text-link {
  color: #dce7f2;
  font-size: 14px;
  font-weight: 700;
}

.wc-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 20px;
  margin-bottom: 18px;
}

.wc-page-hero-copy,
.wc-account-card,
.wc-card,
.wc-list-card,
.wc-auth-card,
.wc-empty-state {
  padding: 24px;
  border-radius: var(--wc-radius-xl);
}

.wc-page-kicker,
.wc-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(62, 176, 255, 0.12);
  border: 1px solid rgba(62, 176, 255, 0.16);
  color: #d7efff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-page-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.wc-account-card {
  display: grid;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(16, 30, 48, 0.96), rgba(10, 20, 34, 0.98)),
    rgba(255, 255, 255, 0.03);
}

.wc-account-card strong {
  font-size: 18px;
}

.wc-account-card span {
  color: var(--wc-muted);
  font-size: 14px;
}

.wc-panel-menu {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 8px;
  margin-bottom: 22px;
  scrollbar-width: none;
}

.wc-panel-menu::-webkit-scrollbar {
  display: none;
}

.wc-panel-menu-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe9f3;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.wc-panel-menu-link.is-current {
  border-color: var(--wc-line-strong);
  background: rgba(62, 176, 255, 0.14);
  color: #ffffff;
}

.wc-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.wc-summary-card {
  padding: 18px;
  border-radius: var(--wc-radius-lg);
  display: grid;
  gap: 12px;
}

.wc-summary-label {
  color: var(--wc-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wc-summary-card strong {
  font-size: 28px;
  line-height: 1;
}

.wc-grid {
  display: grid;
  gap: 16px;
}

.wc-dashboard-feed {
  display: grid;
  gap: 16px;
}

.wc-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wc-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-card {
  display: grid;
  gap: 16px;
}

.wc-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wc-card h2,
.wc-list-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.wc-card-copy {
  margin-top: -6px;
}

.wc-list-stack {
  display: grid;
  gap: 14px;
}

.wc-list-card {
  display: grid;
  gap: 16px;
}

.wc-list-item {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--wc-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--wc-surface-soft);
}

.wc-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.wc-list-title {
  margin: 0;
  font-size: 18px;
}

.wc-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--wc-muted);
  font-size: 13px;
}

.wc-item-copy {
  font-size: 13px;
}

.wc-keyline {
  font-family: var(--wc-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7efff;
}

.wc-license-progress {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(97, 153, 235, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 98, 216, 0.08), rgba(15, 98, 216, 0.03));
}

.wc-license-progress-title {
  color: #f3f8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-license-progress-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-license-progress-list li {
  position: relative;
  padding-left: 18px;
  color: #cfe7ff;
  font-size: 13px;
  line-height: 1.55;
}

.wc-license-progress-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #56a4ff 0%, #8fd1ff 100%);
  box-shadow: 0 0 0 4px rgba(86, 164, 255, 0.14);
}

.wc-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.wc-auth-card {
  display: grid;
  gap: 18px;
}

.wc-auth-card--accent {
  position: relative;
  overflow: hidden;
}

.wc-auth-card--accent::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(62, 176, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.wc-auth-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.wc-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wc-auth-form,
.wc-ticket-form {
  display: grid;
  gap: 16px;
}

.wc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wc-field {
  display: grid;
  gap: 8px;
}

.wc-field span {
  color: var(--wc-muted);
  font-size: 13px;
  font-weight: 700;
}

.wc-field input,
.wc-field select,
.wc-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(4, 9, 18, 0.44);
  color: var(--wc-text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wc-field textarea {
  min-height: 148px;
  resize: vertical;
}

.wc-field input::placeholder,
.wc-field textarea::placeholder {
  color: rgba(238, 245, 251, 0.42);
}

.wc-field input:focus,
.wc-field select:focus,
.wc-field textarea:focus {
  border-color: rgba(62, 176, 255, 0.38);
  box-shadow: 0 0 0 4px rgba(62, 176, 255, 0.12);
  background: rgba(4, 9, 18, 0.66);
}

.wc-primary-button,
.wc-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-primary-button {
  background: linear-gradient(135deg, var(--wc-primary), var(--wc-primary-deep));
  color: #fff;
  box-shadow: 0 18px 30px rgba(12, 131, 226, 0.24);
}

.wc-secondary-button {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wc-primary-button:hover,
.wc-secondary-button:hover {
  transform: translateY(-1px);
}

.wc-bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--wc-muted);
  font-size: 14px;
  line-height: 1.6;
}

.wc-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wc-primary);
}

.wc-message-banner {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  margin-bottom: 18px;
}

.wc-message-banner strong {
  font-family: var(--wc-font-display);
  font-size: 16px;
}

.wc-message-banner p {
  margin: 0;
  color: var(--wc-text);
  font-size: 14px;
  line-height: 1.6;
}

.wc-message-banner--success {
  background: rgba(50, 208, 155, 0.12);
  border-color: rgba(50, 208, 155, 0.2);
}

.wc-message-banner--error {
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.2);
}

.wc-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wc-mini-metric {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.wc-mini-metric strong {
  font-family: var(--wc-font-display);
  font-size: 15px;
}

.wc-mini-metric span {
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.wc-empty-state {
  text-align: center;
  display: grid;
  gap: 10px;
}

.wc-empty-state strong {
  font-size: 20px;
}

.wc-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wc-info-pair {
  display: grid;
  gap: 6px;
}

.wc-info-pair span {
  color: var(--wc-muted);
  font-size: 13px;
}

.wc-info-pair strong {
  font-size: 15px;
}

.wc-callout {
  padding: 18px;
  border-radius: var(--wc-radius-lg);
  background: rgba(62, 176, 255, 0.08);
  border: 1px solid rgba(62, 176, 255, 0.14);
}

.wc-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.wc-callout p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.wc-callout--soft {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.wc-response-box {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(50, 208, 155, 0.18);
  background: rgba(50, 208, 155, 0.08);
}

.wc-response-box strong {
  font-family: var(--wc-font-display);
  font-size: 16px;
}

.wc-response-box p,
.wc-response-box span {
  margin: 0;
  color: var(--wc-text);
  font-size: 14px;
  line-height: 1.6;
}

.wc-response-box span {
  color: var(--wc-muted);
  font-size: 12px;
}

.wc-public-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.wc-public-section {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--wc-radius-xl);
  border: 1px solid var(--wc-line);
  background:
    linear-gradient(180deg, rgba(18, 31, 50, 0.92), rgba(11, 21, 36, 0.98)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--wc-shadow);
}

.wc-section-heading {
  display: grid;
  gap: 8px;
}

.wc-section-heading h2 {
  margin: 0;
  font-family: var(--wc-font-display);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.wc-section-heading p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 14px;
  line-height: 1.7;
}

.wc-public-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.wc-public-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--wc-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.wc-public-card h3 {
  margin: 0;
  font-family: var(--wc-font-display);
  font-size: 21px;
}

.wc-public-card p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.wc-news-list {
  display: grid;
  gap: 12px;
}

.wc-news-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.wc-news-item strong {
  font-family: var(--wc-font-display);
  font-size: 16px;
}

.wc-news-item span,
.wc-news-item p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.6;
}

.wc-noscript {
  margin-top: 20px;
}

@keyframes wcPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 176, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(62, 176, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 176, 255, 0);
  }
}

@media (max-width: 980px) {
  .wc-field-grid,
  .wc-mini-metrics,
  .wc-public-split,
  .wc-page-hero,
  .wc-auth-layout,
  .wc-grid.two,
  .wc-grid.three {
    grid-template-columns: 1fr;
  }

  .wc-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wc-app-shell {
    width: min(100% - 18px, 1120px);
    padding-top: max(14px, env(safe-area-inset-top));
  }

  .wc-panel-header,
  .wc-card-head,
  .wc-item-head,
  .wc-runtime-strip,
  .wc-status-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .wc-runtime-copy {
    align-items: flex-start;
  }

  .wc-panel-header {
    gap: 14px;
  }

  .wc-panel-account {
    justify-content: space-between;
  }

  .wc-page-hero h1,
  .wc-auth-title {
    font-size: 30px;
  }

  .wc-summary-grid {
    grid-template-columns: 1fr;
  }

  .wc-primary-button,
  .wc-secondary-button,
  .wc-inline-retry {
    width: 100%;
  }
}

.wc-sheet-open {
  overflow: hidden;
}

.wc-public-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.wc-public-appbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wc-news-toggle,
.wc-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--wc-text);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.wc-news-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(62, 176, 255, 0.18);
  color: #dff2ff;
  font-size: 12px;
}

.wc-icon-button.is-current {
  border-color: var(--wc-line-strong);
  background: rgba(62, 176, 255, 0.14);
}

.wc-mobile-dock {
  display: none;
}

.wc-news-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 18, 0.6);
  backdrop-filter: blur(8px);
  z-index: 25;
}

.wc-news-sheet {
  position: fixed;
  right: 14px;
  left: 14px;
  top: max(16px, env(safe-area-inset-top));
  z-index: 30;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(19, 31, 48, 0.98), rgba(8, 16, 28, 0.99));
  box-shadow: 0 32px 72px rgba(2, 9, 20, 0.55);
  transform: translateY(-18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.wc-news-sheet.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wc-news-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.wc-news-sheet-head strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--wc-font-display);
  font-size: 22px;
}

.wc-news-sheet-head p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 14px;
  line-height: 1.6;
}

.wc-sheet-close {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--wc-text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.wc-news-sheet-list {
  display: grid;
  gap: 12px;
  max-height: min(68vh, 620px);
  overflow-y: auto;
}

.wc-news-sheet-item {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.wc-news-sheet-item strong {
  font-family: var(--wc-font-display);
  font-size: 18px;
}

.wc-news-sheet-item p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.wc-news-item-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--wc-muted);
  font-size: 12px;
  font-weight: 700;
}

.wc-public-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  margin-bottom: 22px;
}

.wc-public-hero-copy {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--wc-line);
  background:
    radial-gradient(circle at top right, rgba(62, 176, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(17, 31, 49, 0.95), rgba(8, 16, 28, 0.98));
  box-shadow: var(--wc-shadow);
}

.wc-stat-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wc-stat-pill {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.wc-stat-pill strong {
  font-family: var(--wc-font-display);
  font-size: 24px;
}

.wc-stat-pill span {
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.wc-auth-form--single .wc-field-grid {
  grid-template-columns: 1fr;
}

.wc-service-stack,
.wc-about-timeline {
  display: grid;
  gap: 14px;
}

.wc-service-card {
  gap: 16px;
}

.wc-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(62, 176, 255, 0.18);
  background: rgba(62, 176, 255, 0.1);
  color: #dff2ff;
  font-size: 12px;
  font-weight: 700;
}

.wc-about-card {
  position: relative;
  padding-left: 22px;
}

.wc-about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wc-primary);
  box-shadow: 0 0 0 6px rgba(62, 176, 255, 0.14);
}

.wc-news-item {
  gap: 10px;
  padding: 16px 18px;
}

.wc-news-item strong {
  font-size: 17px;
}

@media (max-width: 980px) {
  .wc-public-hero-card,
  .wc-public-split,
  .wc-page-hero {
    grid-template-columns: 1fr;
  }

  .wc-stat-pills,
  .wc-mini-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wc-public-appbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .wc-public-appbar-actions,
  .wc-news-toggle {
    width: 100%;
  }

  .wc-public-hero-copy,
  .wc-public-section,
  .wc-auth-card,
  .wc-page-hero-copy,
  .wc-account-card,
  .wc-card,
  .wc-list-card,
  .wc-empty-state {
    padding: 20px;
  }

  .wc-panel-header {
    grid-template-columns: 1fr;
    display: grid;
  }

  .wc-panel-account {
    width: 100%;
    justify-content: space-between;
  }

  .wc-panel-account .wc-icon-button,
  .wc-panel-account .wc-text-link {
    width: auto;
  }

  .wc-panel-menu {
    padding-bottom: 4px;
    margin-bottom: 18px;
  }

  .wc-news-sheet {
    top: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 20px);
  }

  .wc-mobile-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 24;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 18, 31, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 48px rgba(3, 11, 24, 0.42);
  }

  .wc-mobile-dock-link {
    display: grid;
    place-items: center;
    min-height: 52px;
    padding: 8px 6px;
    border-radius: 18px;
    color: var(--wc-muted);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
  }

  .wc-mobile-dock-link.is-current {
    background: rgba(62, 176, 255, 0.14);
    color: #fff;
  }

  body {
    padding-bottom: 94px;
  }
}

.wc-section-heading--compact {
  gap: 6px;
}

.wc-discover-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.wc-discover-strip::-webkit-scrollbar,
.wc-dashboard-stories::-webkit-scrollbar,
.wc-summary-grid::-webkit-scrollbar {
  display: none;
}

.wc-story-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(62, 176, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(17, 31, 49, 0.96), rgba(10, 19, 33, 0.98));
  box-shadow: 0 20px 44px rgba(2, 9, 20, 0.3);
}

.wc-story-card.is-featured {
  border-color: rgba(62, 176, 255, 0.22);
  background:
    radial-gradient(circle at top right, rgba(62, 176, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(18, 36, 58, 0.98), rgba(9, 19, 33, 1));
}

.wc-story-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dff2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.wc-story-card strong {
  font-family: var(--wc-font-display);
  font-size: 20px;
  line-height: 1.08;
}

.wc-story-card p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.55;
}

.wc-discover-grid,
.wc-dashboard-explore {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.wc-discover-card,
.wc-feed-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 31, 49, 0.94), rgba(10, 19, 33, 0.99)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 24px 54px rgba(2, 9, 20, 0.32);
}

.wc-discover-card--services,
.wc-feed-panel--highlight {
  grid-column: span 8;
}

.wc-discover-card--cta,
.wc-feed-panel--support {
  grid-column: span 4;
}

.wc-discover-card--about,
.wc-feed-panel--licenses,
.wc-feed-panel--notifications {
  grid-column: span 5;
}

.wc-discover-card--news,
.wc-feed-panel--services,
.wc-feed-panel--servers {
  grid-column: span 7;
}

.wc-service-mosaic,
.wc-about-grid,
.wc-news-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wc-service-mosaic .wc-service-card:first-child,
.wc-news-mosaic .wc-news-item:first-child {
  grid-column: span 2;
}

.wc-mini-metrics--stack {
  grid-template-columns: 1fr;
}

.wc-dashboard-stories {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  margin-bottom: 4px;
  scrollbar-width: none;
}

.wc-glance-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.wc-glance-card strong {
  font-family: var(--wc-font-display);
  font-size: 28px;
  line-height: 1;
}

.wc-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(62, 176, 255, 0.2);
  background: rgba(62, 176, 255, 0.1);
  color: #eaf6ff;
  font-size: 13px;
  font-weight: 800;
}

.wc-action-pill:hover {
  background: rgba(62, 176, 255, 0.16);
}

.wc-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wc-activity-tile {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.wc-activity-tile strong {
  font-family: var(--wc-font-display);
  font-size: 26px;
  line-height: 1;
}

.wc-activity-tile span {
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.wc-feed-entries {
  display: grid;
  gap: 12px;
}

.wc-feed-entry {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.wc-feed-entry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wc-feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--wc-muted);
  font-size: 12px;
  font-weight: 700;
}

.wc-feed-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.wc-feed-panel--highlight {
  background:
    radial-gradient(circle at top right, rgba(62, 176, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 35, 56, 0.97), rgba(8, 17, 30, 1));
}

.wc-feed-panel--notifications .wc-feed-entry,
.wc-discover-card--news .wc-news-item {
  background: rgba(255, 255, 255, 0.04);
}

.wc-summary-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.wc-summary-card {
  min-width: 170px;
}

@media (min-width: 981px) {
  .wc-summary-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .wc-summary-card {
    min-width: 0;
  }
}

@media (max-width: 1040px) {
  .wc-discover-card--services,
  .wc-discover-card--cta,
  .wc-discover-card--about,
  .wc-discover-card--news,
  .wc-feed-panel--highlight,
  .wc-feed-panel--services,
  .wc-feed-panel--support,
  .wc-feed-panel--licenses,
  .wc-feed-panel--notifications,
  .wc-feed-panel--servers {
    grid-column: span 12;
  }
}

@media (max-width: 820px) {
  .wc-service-mosaic,
  .wc-about-grid,
  .wc-news-mosaic,
  .wc-activity-grid {
    grid-template-columns: 1fr;
  }

  .wc-service-mosaic .wc-service-card:first-child,
  .wc-news-mosaic .wc-news-item:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .wc-discover-card,
  .wc-feed-panel,
  .wc-story-card {
    padding: 18px;
    border-radius: 24px;
  }

  .wc-discover-strip,
  .wc-dashboard-stories {
    grid-auto-columns: minmax(210px, 86%);
  }

  .wc-feed-entry-head,
  .wc-card-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wc-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-action-pill {
    width: 100%;
  }
}

.wc-mobile-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.wc-bento-card {
  display: grid;
  gap: 16px;
  min-height: 168px;
  min-width: 0;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(62, 176, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(17, 31, 49, 0.96), rgba(10, 19, 33, 0.99));
  box-shadow: 0 22px 52px rgba(2, 9, 20, 0.32);
  overflow: hidden;
}

.wc-bento-card--banner,
.wc-bento-card--discover,
.wc-bento-card--serverwide {
  grid-column: 1 / -1;
}

.wc-bento-card--banner {
  min-height: 190px;
}

.wc-bento-card--discover {
  min-height: 184px;
}

.wc-bento-card--auth {
  background:
    radial-gradient(circle at top right, rgba(62, 176, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(18, 35, 56, 0.98), rgba(9, 19, 33, 1));
}

.wc-bento-card--value {
  align-content: start;
}

.wc-bento-banner-top,
.wc-bento-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wc-bento-card h2,
.wc-bento-mini-card strong,
.wc-bento-service-tile strong {
  margin: 0;
  font-family: var(--wc-font-display);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.wc-bento-card h2 {
  font-size: clamp(22px, 3.8vw, 30px);
  line-height: 1.08;
}

.wc-bento-card-head p,
.wc-bento-mini-card p,
.wc-bento-service-tile span,
.wc-bento-point span,
.wc-bento-stat span {
  margin: 0;
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.wc-bento-inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wc-bento-stat,
.wc-bento-point,
.wc-bento-service-tile,
.wc-bento-mini-card {
  display: grid;
  gap: 8px;
  padding: 14px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.wc-bento-stat strong {
  font-family: var(--wc-font-display);
  font-size: 24px;
  line-height: 1;
}

.wc-bento-service-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.wc-bento-service-rail::-webkit-scrollbar {
  display: none;
}

.wc-bento-service-tile strong {
  font-size: 18px;
  line-height: 1.12;
}

.wc-bento-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(62, 176, 255, 0.12);
  color: #dff2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-bento-points,
.wc-bento-mini-feed {
  display: grid;
  gap: 10px;
}

.wc-bento-point strong,
.wc-bento-mini-card strong {
  font-size: 16px;
  line-height: 1.2;
}

.wc-bento-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-mobile-bento .wc-auth-form {
  gap: 14px;
}

.wc-mobile-bento .wc-field,
.wc-mobile-bento .wc-field input,
.wc-mobile-bento .wc-field textarea,
.wc-mobile-bento .wc-field select,
.wc-mobile-bento .wc-auth-actions,
.wc-mobile-bento .wc-primary-button,
.wc-mobile-bento .wc-secondary-button {
  min-width: 0;
}

.wc-mobile-bento .wc-auth-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.wc-mobile-bento .wc-primary-button,
.wc-mobile-bento .wc-secondary-button {
  width: 100%;
}

.wc-mobile-bento .wc-news-item-topline {
  align-items: center;
}

.wc-mobile-bento .wc-news-item-topline strong {
  font-size: 15px;
  line-height: 1.2;
}

@media (min-width: 560px) {
  .wc-mobile-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .wc-mobile-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wc-bento-card--banner,
  .wc-bento-card--discover,
  .wc-bento-card--serverwide {
    grid-column: span 4;
  }

  .wc-bento-card--value,
  .wc-bento-card--auth,
  .wc-bento-card--services,
  .wc-bento-card--support,
  .wc-bento-card--licenses,
  .wc-bento-card--updates,
  .wc-bento-card--about {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .wc-bento-card {
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .wc-bento-banner-top,
  .wc-bento-card-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wc-bento-inline-stats {
    grid-template-columns: 1fr;
  }

  .wc-bento-action-grid {
    grid-template-columns: 1fr;
  }

  .wc-bento-service-rail {
    grid-auto-columns: minmax(180px, 82%);
  }
}

@media (max-width: 420px) {
  .wc-bento-card h2 {
    font-size: 21px;
  }

  .wc-mobile-bento .wc-news-item-topline {
    display: grid;
    justify-content: flex-start;
  }

  .wc-bento-stat strong {
    font-size: 22px;
  }
}

.wc-body-dashboard {
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
  color: #18345f;
  padding-bottom: 0;
}

.wc-body-dashboard .wc-status-shell,
.wc-body-dashboard .wc-panel-header,
.wc-body-dashboard .wc-page-hero,
.wc-body-dashboard .wc-panel-menu,
.wc-body-dashboard .wc-mobile-bento--dashboard[hidden] {
  display: none;
}

.wc-app-shell--dashboard {
  width: min(100% - 20px, 470px);
  padding: max(18px, env(safe-area-inset-top)) 0 18px;
}

.wc-dashboard-device-shell {
  display: flex;
  justify-content: center;
}

.wc-dashboard-device {
  position: relative;
  width: min(100%, 430px);
  padding: 10px;
  border-radius: 44px;
  border: 2px solid #4a5573;
  background: linear-gradient(180deg, #1c2332 0%, #0b0f17 100%);
  box-shadow:
    0 26px 80px rgba(17, 32, 64, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.wc-dashboard-device::before,
.wc-dashboard-device::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #3b4764, #232b3f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.wc-dashboard-device::before {
  left: -5px;
  top: 176px;
  width: 5px;
  height: 84px;
  border-radius: 4px 0 0 4px;
}

.wc-dashboard-device::after {
  right: -5px;
  top: 318px;
  width: 5px;
  height: 112px;
  border-radius: 0 4px 4px 0;
}

.wc-dashboard-screen {
  position: relative;
  overflow: hidden;
  min-height: 844px;
  border-radius: 36px;
  background: linear-gradient(180deg, #eaf0f7 0%, #edf2f8 100%);
}

.wc-dashboard-main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 844px;
}

.wc-dashboard-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 176px;
  height: 34px;
  border-radius: 999px;
  background: #04070d;
  transform: translateX(-50%);
}

.wc-dashboard-notch-speaker {
  width: 68px;
  height: 10px;
  border-radius: 999px;
  background: #1c2232;
}

.wc-dashboard-notch-camera {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5e8df0, #20345a 70%);
}

.wc-dashboard-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 22px 104px;
  background: linear-gradient(160deg, #1c75e8 0%, #1159cb 62%, #0e4cba 100%);
  color: #fff;
}

.wc-dashboard-hero::before,
.wc-dashboard-hero::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -10%;
  border-radius: 50%;
  pointer-events: none;
}

.wc-dashboard-hero::before {
  bottom: -84px;
  height: 198px;
  background:
    radial-gradient(120% 140% at 20% 20%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.wc-dashboard-hero::after {
  bottom: -118px;
  height: 228px;
  background:
    radial-gradient(120% 140% at 90% 30%, rgba(120, 196, 255, 0.5), transparent 34%),
    linear-gradient(180deg, rgba(72, 166, 255, 0.2), rgba(255, 255, 255, 0.05));
  opacity: 0.9;
}

.wc-dashboard-statusbar,
.wc-dashboard-hero-body,
.wc-dashboard-summary-grid,
.wc-dashboard-slider-dots,
.wc-dashboard-panel {
  position: relative;
  z-index: 1;
}

.wc-dashboard-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
}

.wc-dashboard-status-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wc-dashboard-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 15px;
}

.wc-dashboard-signal i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
}

.wc-dashboard-signal i:nth-child(1) {
  height: 5px;
}

.wc-dashboard-signal i:nth-child(2) {
  height: 8px;
}

.wc-dashboard-signal i:nth-child(3) {
  height: 11px;
}

.wc-dashboard-signal i:nth-child(4) {
  height: 14px;
}

.wc-dashboard-wifi {
  position: relative;
  width: 16px;
  height: 12px;
}

.wc-dashboard-wifi::before,
.wc-dashboard-wifi::after {
  content: "";
  position: absolute;
  left: 50%;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.wc-dashboard-wifi::before {
  top: 0;
  width: 16px;
  height: 8px;
}

.wc-dashboard-wifi::after {
  top: 4px;
  width: 10px;
  height: 5px;
}

.wc-dashboard-battery {
  position: relative;
  width: 26px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.wc-dashboard-battery::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -4px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
}

.wc-dashboard-battery span {
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  background: currentColor;
}

.wc-dashboard-hero-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 74px;
}

.wc-dashboard-hero-copy {
  display: grid;
  gap: 8px;
}

.wc-dashboard-hero-copy h1 {
  margin: 0;
  font-family: var(--wc-font-body);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.12;
}

.wc-dashboard-hero-copy h1 strong {
  font-weight: 800;
}

.wc-dashboard-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.5;
}

.wc-dashboard-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}

.wc-dashboard-circle-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: #185fc9;
  box-shadow: 0 12px 22px rgba(8, 57, 131, 0.18);
}

.wc-dashboard-circle-icon,
.wc-dashboard-summary-icon,
.wc-dashboard-quick-icon,
.wc-dashboard-tab-icon {
  display: grid;
  place-items: center;
}

.wc-dashboard-circle-icon {
  width: 28px;
  height: 28px;
}

.wc-dashboard-circle-icon svg,
.wc-dashboard-summary-icon svg,
.wc-dashboard-quick-icon svg,
.wc-dashboard-tab-icon svg {
  width: 100%;
  height: 100%;
}

.wc-dashboard-badge {
  position: absolute;
  top: -4px;
  right: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #ff4a48;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(255, 74, 72, 0.28);
}

.wc-dashboard-surface {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  margin-top: -48px;
  padding: 0 14px;
}

.wc-dashboard-surface::before {
  content: "";
  position: absolute;
  inset: 24px 0 0;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  background: linear-gradient(180deg, #f3f6fb 0%, #ebf1f7 100%);
  z-index: 0;
}

.wc-dashboard-summary-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(116px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 0 2px 2px;
  scrollbar-width: none;
}

.wc-dashboard-summary-grid::-webkit-scrollbar {
  display: none;
}

.wc-dashboard-summary-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 182px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(29, 79, 146, 0.12);
}

.wc-dashboard-summary-icon {
  width: 44px;
  height: 44px;
  color: #4b87dd;
}

.wc-dashboard-summary-card:nth-child(2) .wc-dashboard-summary-icon {
  color: #2877d8;
}

.wc-dashboard-summary-card:nth-child(3) .wc-dashboard-summary-icon {
  color: #2d4675;
}

.wc-dashboard-summary-card h2 {
  margin: 0;
  color: #1c335d;
  font-family: var(--wc-font-body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.12;
}

.wc-dashboard-summary-lines {
  display: grid;
  gap: 0;
  margin-top: auto;
  background: #f4f8ff;
  border-radius: 12px;
  overflow: hidden;
}

.wc-dashboard-summary-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-height: 44px;
  padding: 10px 12px;
  color: #214a8b;
  font-size: 13px;
  line-height: 1.2;
}

.wc-dashboard-summary-line + .wc-dashboard-summary-line {
  border-top: 1px solid #dbe7f8;
}

.wc-dashboard-summary-line strong {
  color: #1965d1;
  font-family: var(--wc-font-display);
  font-size: 19px;
  line-height: 1;
}

.wc-dashboard-summary-line.is-danger,
.wc-dashboard-summary-line.is-danger strong {
  color: #f14f61;
}

.wc-dashboard-summary-line.is-muted {
  color: #24497d;
}

.wc-dashboard-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 2px 0 2px;
}

.wc-dashboard-slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5cfdf;
}

.wc-dashboard-slider-dots span.is-active {
  background: #1a4c9e;
}

.wc-dashboard-panel {
  padding: 18px 16px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(29, 79, 146, 0.12);
}

.wc-dashboard-panel-head {
  padding: 0 6px 14px;
  border-bottom: 1px solid #dbe5f3;
}

.wc-dashboard-panel-head h2 {
  margin: 0;
  color: #1a2f59;
  font-family: var(--wc-font-body);
  font-size: 20px;
  font-weight: 800;
}

.wc-dashboard-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.wc-dashboard-quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 138px;
  padding: 14px 8px 12px;
  border-radius: 16px;
  border: 1px solid #cfe0f6;
  background: linear-gradient(180deg, #fbfdff 0%, #edf3fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 16px rgba(53, 102, 176, 0.08);
  color: #294677;
}

.wc-dashboard-quick-card.is-primary {
  border-color: transparent;
  background: linear-gradient(180deg, #168bfd 0%, #0b48cb 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(17, 86, 208, 0.28);
}

.wc-dashboard-quick-icon {
  width: 54px;
  height: 54px;
  color: #3c5f97;
}

.wc-dashboard-quick-card:nth-child(2) .wc-dashboard-quick-icon {
  color: #f5a233;
}

.wc-dashboard-quick-card:nth-child(4) .wc-dashboard-quick-icon {
  color: #294a83;
}

.wc-dashboard-quick-card.is-primary .wc-dashboard-quick-icon {
  color: #fff;
}

.wc-dashboard-quick-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.wc-dashboard-badge--quick {
  top: 8px;
  right: 8px;
  min-width: 26px;
  height: 26px;
  font-size: 13px;
}

.wc-dashboard-content-spacer {
  min-height: 180px;
  flex: 1 1 auto;
}

.wc-dashboard-tabbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(39, 78, 132, 0.12);
}

.wc-dashboard-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-height: 62px;
  color: #3b5d90;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.wc-dashboard-tab-icon {
  width: 28px;
  height: 28px;
}

.wc-dashboard-tab.is-active {
  color: #1676eb;
}

.wc-dashboard-tab.is-cta {
  position: relative;
  min-height: 106px;
  transform: translateY(-16px);
  color: #fff;
}

.wc-dashboard-tab.is-cta .wc-dashboard-tab-icon {
  width: 94px;
  height: 94px;
  border: 8px solid #eff4fa;
  border-radius: 50%;
  background: linear-gradient(180deg, #1790ff 0%, #0b4ccf 100%);
  box-shadow: 0 18px 30px rgba(17, 86, 208, 0.26);
}

.wc-dashboard-tab.is-cta .wc-dashboard-tab-icon svg {
  width: 42px;
  height: 42px;
}

.wc-dashboard-tab.is-cta .wc-dashboard-tab-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 520px) {
  .wc-body-dashboard {
    padding-top: 0;
  }

  .wc-app-shell--dashboard {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .wc-dashboard-device {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wc-dashboard-device::before,
  .wc-dashboard-device::after {
    display: none;
  }

  .wc-dashboard-screen,
  .wc-dashboard-main {
    min-height: 100vh;
    border-radius: 0;
  }
}

@media (max-width: 400px) {
  .wc-dashboard-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wc-dashboard-hero-copy h1 {
    font-size: 29px;
  }

  .wc-dashboard-circle-button {
    width: 54px;
    height: 54px;
  }

  .wc-dashboard-quick-grid {
    gap: 10px;
  }

  .wc-dashboard-quick-card {
    min-height: 128px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .wc-dashboard-quick-icon {
    width: 48px;
    height: 48px;
  }

  .wc-dashboard-tabbar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .wc-dashboard-tab.is-cta .wc-dashboard-tab-icon {
    width: 88px;
    height: 88px;
  }
}

.wc-body-dashboard {
  background: #ffffff;
  color: #193861;
}

.wc-body-dashboard .wc-public-appbar,
.wc-body-dashboard .wc-news-backdrop,
.wc-body-dashboard .wc-news-sheet,
.wc-body-dashboard .wc-mobile-bento--public {
  display: none;
}

.wc-app-shell--dashboard {
  width: min(100% - 24px, 760px);
  padding-top: 36px;
  padding-bottom: 36px;
}

.wc-home-shell {
  display: flex;
  justify-content: center;
}

.wc-home-device {
  position: relative;
  width: min(100%, 430px);
  padding: 10px;
  border-radius: 46px;
  border: 2px solid #4b5571;
  background: linear-gradient(180deg, #20293b 0%, #0b0f17 100%);
  box-shadow:
    0 30px 80px rgba(22, 37, 70, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.wc-home-device::before,
.wc-home-device::after {
  content: "";
  position: absolute;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, #4e5875, #253046);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.wc-home-device::before {
  top: 160px;
  left: -5px;
  height: 72px;
}

.wc-home-device::after {
  top: 292px;
  right: -5px;
  height: 108px;
}

.wc-home-screen {
  position: relative;
  overflow: hidden;
  min-height: 844px;
  border-radius: 38px;
  background: linear-gradient(180deg, #f2f6fb 0%, #ebf1f7 100%);
}

.wc-home-hardware {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 176px;
  height: 34px;
  border-radius: 999px;
  background: #030507;
  transform: translateX(-50%);
}

.wc-home-notch-speaker {
  width: 68px;
  height: 10px;
  border-radius: 999px;
  background: #1b2130;
}

.wc-home-notch-camera {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5186ec, #192845 72%);
}

.wc-home-statusbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.wc-home-status-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wc-home-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.wc-home-signal i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
}

.wc-home-signal i:nth-child(1) {
  height: 5px;
}

.wc-home-signal i:nth-child(2) {
  height: 8px;
}

.wc-home-signal i:nth-child(3) {
  height: 11px;
}

.wc-home-signal i:nth-child(4) {
  height: 14px;
}

.wc-home-wifi {
  position: relative;
  width: 16px;
  height: 12px;
}

.wc-home-wifi::before,
.wc-home-wifi::after {
  content: "";
  position: absolute;
  left: 50%;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.wc-home-wifi::before {
  top: 0;
  width: 16px;
  height: 8px;
}

.wc-home-wifi::after {
  top: 4px;
  width: 10px;
  height: 5px;
}

.wc-home-battery {
  position: relative;
  width: 26px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.wc-home-battery::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -4px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
}

.wc-home-battery span {
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  background: currentColor;
}

.wc-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 54px 26px 0;
  background: linear-gradient(180deg, #1f74de 0%, #125cc9 60%, #0f58c5 100%);
  color: #ffffff;
}

.wc-home-hero-copy,
.wc-home-hero-actions {
  position: relative;
  z-index: 2;
}

.wc-home-hero-copy {
  padding-top: 60px;
}

.wc-home-hero-copy h1 {
  margin: 0;
  font-family: var(--wc-font-body);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
}

.wc-home-hero-copy h1 strong {
  font-weight: 800;
}

.wc-home-hero-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.wc-home-hero-actions {
  position: absolute;
  top: 96px;
  right: 26px;
  display: flex;
  gap: 12px;
}

.wc-home-hero-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a61cc;
  box-shadow: 0 12px 28px rgba(10, 52, 123, 0.16);
}

.wc-home-hero-button-icon,
.wc-home-summary-icon,
.wc-home-quick-icon,
.wc-home-tab-icon {
  display: grid;
  place-items: center;
}

.wc-home-hero-button-icon {
  width: 28px;
  height: 28px;
}

.wc-home-hero-button-icon svg,
.wc-home-summary-icon svg,
.wc-home-quick-icon svg,
.wc-home-tab-icon svg {
  width: 100%;
  height: 100%;
}

.wc-home-badge {
  position: absolute;
  top: -4px;
  right: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 29px;
  height: 29px;
  padding: 0 8px;
  border-radius: 999px;
  background: #ff4d48;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(255, 77, 72, 0.28);
}

.wc-home-hero-waves {
  position: absolute;
  inset: auto -8% -80px;
  height: 184px;
  pointer-events: none;
}

.wc-home-hero-waves .wave {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 50%;
}

.wc-home-hero-waves .wave-a {
  bottom: 22px;
  height: 120px;
  background:
    radial-gradient(130% 120% at 10% 10%, rgba(255, 255, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(110, 188, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.wc-home-hero-waves .wave-b {
  bottom: 4px;
  height: 136px;
  background: linear-gradient(180deg, rgba(116, 194, 255, 0.28), rgba(255, 255, 255, 0.04));
}

.wc-home-hero-waves .wave-c {
  bottom: -22px;
  height: 132px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96));
}

.wc-home-content {
  padding: 12px 16px 180px;
}

.wc-home-summary {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(198px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 0 2px 2px;
  scrollbar-width: none;
}

.wc-home-summary::-webkit-scrollbar {
  display: none;
}

.wc-home-summary-card {
  display: grid;
  gap: 14px;
  min-height: 312px;
  padding: 20px 18px 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(38, 80, 146, 0.12);
}

.wc-home-summary-icon {
  width: 54px;
  height: 54px;
  color: #5187dc;
}

.wc-home-summary-card:nth-child(2) .wc-home-summary-icon {
  color: #1f72da;
}

.wc-home-summary-card:nth-child(3) .wc-home-summary-icon {
  color: #314e83;
}

.wc-home-summary-card h2 {
  margin: 0;
  color: #1b315d;
  font-family: var(--wc-font-body);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.wc-home-summary-footer {
  align-self: end;
  margin-top: auto;
  margin-left: -18px;
  margin-right: -18px;
  background: #f3f8ff;
}

.wc-home-summary-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-height: 58px;
  padding: 16px 18px;
  color: #27508d;
  font-size: 13px;
  line-height: 1.15;
}

.wc-home-summary-line + .wc-home-summary-line {
  border-top: 1px solid #d6e3f6;
}

.wc-home-summary-line strong {
  color: #2168d1;
  font-family: var(--wc-font-display);
  font-size: 19px;
  line-height: 1;
}

.wc-home-summary-line.is-danger,
.wc-home-summary-line.is-danger strong {
  color: #ef4a60;
}

.wc-home-summary-line.is-muted {
  color: #1d396b;
}

.wc-home-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 12px;
}

.wc-home-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c1cada;
}

.wc-home-pagination span.is-active {
  background: #194a99;
}

.wc-home-quick {
  padding: 18px 16px 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(38, 80, 146, 0.12);
}

.wc-home-quick-head {
  padding: 4px 8px 14px;
  border-bottom: 1px solid #d8e4f4;
}

.wc-home-quick-head h2 {
  margin: 0;
  color: #1a2f5a;
  font-family: var(--wc-font-body);
  font-size: 24px;
  font-weight: 800;
}

.wc-home-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.wc-home-quick-card {
  position: relative;
  display: flex;
  min-height: 140px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 8px;
  border-radius: 16px;
  border: 1px solid #cfe0f5;
  background: linear-gradient(180deg, #ffffff 0%, #edf3fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 6px 12px rgba(66, 106, 166, 0.08);
  color: #2d4778;
}

.wc-home-quick-card.is-primary {
  border-color: transparent;
  background: linear-gradient(180deg, #168cfd 0%, #0b4bcb 100%);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(13, 84, 208, 0.24);
}

.wc-home-quick-icon {
  width: 54px;
  height: 54px;
  color: #43679f;
}

.wc-home-quick-card:nth-child(2) .wc-home-quick-icon {
  color: #f4a331;
}

.wc-home-quick-card:nth-child(4) .wc-home-quick-icon {
  color: #294678;
}

.wc-home-quick-card.is-primary .wc-home-quick-icon {
  color: #ffffff;
}

.wc-home-quick-label {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.wc-home-badge--quick {
  top: 8px;
  right: 8px;
  min-width: 27px;
  height: 27px;
  font-size: 13px;
}

.wc-home-tabbar {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 4px;
  padding: 16px 18px 14px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background: #ffffff;
  box-shadow: 0 -8px 20px rgba(41, 74, 125, 0.1);
}

.wc-home-tab {
  display: flex;
  min-height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #35598f;
  text-align: center;
}

.wc-home-tab.is-active {
  color: #1476eb;
}

.wc-home-tab-icon {
  width: 30px;
  height: 30px;
}

.wc-home-tab-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.wc-home-tab.is-cta {
  position: relative;
  min-height: 110px;
  color: #ffffff;
  transform: translateY(-18px);
}

.wc-home-tab.is-cta .wc-home-tab-icon {
  width: 96px;
  height: 96px;
  border: 8px solid #eef3fa;
  border-radius: 50%;
  background: linear-gradient(180deg, #1891ff 0%, #0b4dce 100%);
  box-shadow: 0 18px 30px rgba(16, 86, 208, 0.24);
}

.wc-home-tab.is-cta .wc-home-tab-icon svg {
  width: 44px;
  height: 44px;
}

.wc-home-tab.is-cta .wc-home-tab-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 800;
}

.wc-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 134px;
  height: 5px;
  border-radius: 999px;
  background: #000000;
  transform: translateX(-50%);
}

@media (max-width: 520px) {
  .wc-app-shell--dashboard {
    width: 100%;
    padding: 0;
  }

  .wc-home-device {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wc-home-device::before,
  .wc-home-device::after {
    display: none;
  }

  .wc-home-screen {
    min-height: 100vh;
    border-radius: 0;
  }
}

@media (max-width: 420px) {
  .wc-home-hero {
    min-height: 228px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .wc-home-hero-actions {
    right: 20px;
  }

  .wc-home-hero-button {
    width: 54px;
    height: 54px;
  }

  .wc-home-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wc-home-summary {
    grid-auto-columns: minmax(184px, 1fr);
  }

  .wc-home-summary-card {
    min-height: 296px;
  }

  .wc-home-quick-grid {
    gap: 10px;
  }

  .wc-home-quick-card {
    min-height: 132px;
  }

  .wc-home-quick-icon {
    width: 48px;
    height: 48px;
  }

  .wc-home-tabbar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .wc-home-tab.is-cta .wc-home-tab-icon {
    width: 90px;
    height: 90px;
  }
}

/* Homepage redesign */

body.wc-homepage-body {
  color-scheme: light;
  background:
    radial-gradient(circle at top left, rgba(15, 98, 216, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(248, 171, 72, 0.14), transparent 22%),
    linear-gradient(180deg, #f4f8fe 0%, #edf3fb 42%, #f8fbff 100%);
  color: #14213d;
}

.wc-homepage-body::selection {
  background: rgba(15, 98, 216, 0.18);
  color: #0b1a34;
}

.wc-homepage-body .wc-app-shell--home {
  width: min(100% - 32px, 1240px);
  padding-top: max(18px, env(safe-area-inset-top));
  padding-bottom: calc(48px + env(safe-area-inset-bottom));
}

.wc-homepage-body .wc-primary-button,
.wc-homepage-body .wc-secondary-button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 15px;
  box-shadow: 0 14px 28px rgba(19, 80, 177, 0.12);
}

.wc-homepage-body .wc-primary-button {
  background: linear-gradient(135deg, #1d7ef8 0%, #0d59d8 100%);
  box-shadow: 0 18px 32px rgba(15, 98, 216, 0.24);
}

.wc-homepage-body .wc-secondary-button {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 98, 216, 0.12);
  color: #1f488f;
}

.wc-homepage-body .wc-primary-button:hover,
.wc-homepage-body .wc-secondary-button:hover {
  box-shadow: 0 18px 32px rgba(15, 98, 216, 0.18);
}

.wc-homepage-body .wc-status-chip {
  min-height: 32px;
  padding: 0 11px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.wc-homepage-body .wc-status-chip.is-primary {
  background: rgba(15, 98, 216, 0.1);
  border-color: rgba(15, 98, 216, 0.14);
  color: #1459b8;
}

.wc-homepage-body .wc-status-chip.is-success {
  background: rgba(32, 170, 120, 0.11);
  border-color: rgba(32, 170, 120, 0.16);
  color: #16825d;
}

.wc-homepage-body .wc-status-chip.is-warning {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.18);
  color: #b56700;
}

.wc-homepage-body .wc-message-banner {
  background: rgba(255, 243, 243, 0.92);
  border-color: rgba(220, 76, 76, 0.14);
}

.wc-homepage-body .wc-message-banner p,
.wc-homepage-body .wc-message-banner strong {
  color: #7c2525;
}

.wc-homepage-body .wc-callout {
  border: 1px solid rgba(15, 98, 216, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 42px rgba(18, 47, 97, 0.1);
}

.wc-homepage-body .wc-callout p,
.wc-homepage-body .wc-callout strong {
  color: #1a2f55;
}

.wc-homepage-main {
  display: grid;
  gap: 28px;
}

.wc-homepage-nav {
  position: sticky;
  top: max(12px, env(safe-area-inset-top));
  z-index: 50;
  margin-bottom: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.wc-homepage-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.wc-homepage-nav.is-scrolled .wc-homepage-nav-inner {
  border-color: rgba(21, 77, 172, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(16, 45, 92, 0.12);
}

.wc-homepage-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.wc-homepage-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(160deg, #1d7ef8 0%, #0f56cb 100%);
  box-shadow: 0 18px 28px rgba(15, 98, 216, 0.18);
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 22px;
  font-weight: 800;
}

.wc-homepage-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wc-homepage-brand-copy strong {
  color: #14213d;
  font-family: var(--wc-font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.wc-homepage-brand-copy small {
  color: #5c6d8a;
  font-size: 12px;
  line-height: 1.4;
}

.wc-homepage-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wc-homepage-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #456186;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wc-homepage-nav-link:hover,
.wc-homepage-nav-link:focus-visible {
  background: rgba(15, 98, 216, 0.08);
  color: #124ea8;
  transform: translateY(-1px);
}

.wc-homepage-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wc-homepage-icon-button,
.wc-homepage-text-button,
.wc-homepage-ghost-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wc-homepage-icon-button {
  width: 44px;
  border: 1px solid rgba(15, 98, 216, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: #144ea9;
}

.wc-homepage-icon-button:hover,
.wc-homepage-text-button:hover,
.wc-homepage-ghost-button:hover {
  transform: translateY(-1px);
}

.wc-homepage-icon {
  width: 22px;
  height: 22px;
}

.wc-homepage-icon svg {
  width: 100%;
  height: 100%;
}

.wc-homepage-icon-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff764c 0%, #f03b2f 100%);
  box-shadow: 0 10px 20px rgba(240, 59, 47, 0.18);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.wc-homepage-text-button,
.wc-homepage-ghost-button {
  padding: 0 16px;
  border: 1px solid rgba(15, 98, 216, 0.1);
  font-size: 14px;
  font-weight: 800;
}

.wc-homepage-text-button {
  background: rgba(255, 255, 255, 0.74);
  color: #1d4f9f;
}

.wc-homepage-ghost-button {
  background: rgba(15, 98, 216, 0.06);
  color: #335d99;
}

.wc-homepage-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(15, 98, 216, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.wc-homepage-menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #194a99;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wc-homepage-menu-button span:first-child {
  transform: translateY(-4px);
}

.wc-homepage-menu-button span:last-child {
  transform: translateY(4px);
}

.wc-homepage-menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.wc-homepage-menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.wc-homepage-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(15, 98, 216, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(15, 98, 216, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 255, 0.9));
  box-shadow: 0 28px 60px rgba(20, 53, 106, 0.12);
  overflow: hidden;
}

.wc-homepage-hero::before,
.wc-homepage-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.wc-homepage-hero::before {
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(15, 98, 216, 0.16), transparent 68%);
}

.wc-homepage-hero::after {
  left: -140px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(248, 171, 72, 0.12), transparent 65%);
}

.wc-homepage-hero-copy,
.wc-homepage-preview {
  position: relative;
  z-index: 1;
}

.wc-homepage-kicker,
.wc-homepage-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 98, 216, 0.08);
  color: #1658b3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-homepage-hero-copy h1,
.wc-homepage-section-head h2,
.wc-homepage-access-copy h2 {
  margin: 0;
  color: #13264b;
  font-family: var(--wc-font-display);
  line-height: 1.05;
}

.wc-homepage-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.wc-homepage-hero-copy p,
.wc-homepage-section-head p,
.wc-homepage-access-copy p,
.wc-homepage-module-card p,
.wc-homepage-platform-card p,
.wc-homepage-update-card p,
.wc-homepage-why-card p,
.wc-homepage-footer-brand p,
.wc-homepage-footer-grid p {
  margin: 0;
  color: #5a6e8f;
  font-size: 15px;
  line-height: 1.75;
}

.wc-homepage-hero-copy p {
  max-width: 620px;
  margin-top: 18px;
  font-size: 16px;
}

.wc-homepage-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.wc-homepage-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.wc-homepage-trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(15, 98, 216, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: #27466d;
  font-size: 13px;
  font-weight: 700;
}

.wc-homepage-preview {
  display: flex;
  justify-content: flex-end;
}

.wc-homepage-preview-shell {
  width: min(100%, 520px);
  padding: 22px;
  border: 1px solid rgba(15, 98, 216, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(17, 84, 184, 0.96), rgba(10, 44, 104, 0.98)),
    #0f3f8e;
  box-shadow: 0 30px 70px rgba(9, 34, 77, 0.28);
  color: #ffffff;
}

.wc-homepage-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.wc-homepage-preview-head strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--wc-font-display);
  font-size: 20px;
}

.wc-homepage-preview-head > div span {
  color: rgba(231, 241, 255, 0.7);
  font-size: 13px;
}

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

.wc-homepage-preview-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wc-homepage-preview-eyebrow {
  color: rgba(231, 241, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wc-homepage-preview-card strong {
  font-family: var(--wc-font-display);
  font-size: 24px;
  line-height: 1.1;
}

.wc-homepage-preview-card p {
  margin: 0;
  color: rgba(231, 241, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.wc-homepage-preview-head .wc-status-chip,
.wc-homepage-preview-card .wc-status-chip {
  width: fit-content;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.wc-homepage-section {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
}

.wc-homepage-section[id] {
  scroll-margin-top: 112px;
}

.wc-homepage-section--soft {
  border: 1px solid rgba(15, 98, 216, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.wc-homepage-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(15, 98, 216, 0.1);
  background:
    radial-gradient(circle at top right, rgba(15, 98, 216, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.92));
  box-shadow: 0 24px 52px rgba(18, 47, 97, 0.08);
}

.wc-homepage-section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.wc-homepage-section-head h2,
.wc-homepage-access-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.wc-homepage-section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  max-width: none;
}

.wc-homepage-module-grid,
.wc-homepage-platform-grid,
.wc-homepage-why-grid,
.wc-homepage-update-grid {
  display: grid;
  gap: 18px;
}

.wc-homepage-module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wc-homepage-module-card,
.wc-homepage-platform-card,
.wc-homepage-why-card,
.wc-homepage-update-card,
.wc-homepage-mini-card,
.wc-homepage-access-card {
  border: 1px solid rgba(15, 98, 216, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 44px rgba(18, 47, 97, 0.08);
}

.wc-homepage-module-card,
.wc-homepage-platform-card,
.wc-homepage-why-card,
.wc-homepage-update-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wc-homepage-module-card:hover,
.wc-homepage-platform-card:hover,
.wc-homepage-why-card:hover,
.wc-homepage-update-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 98, 216, 0.16);
  box-shadow: 0 28px 52px rgba(18, 47, 97, 0.12);
}

.wc-homepage-module-top,
.wc-homepage-platform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wc-homepage-module-icon,
.wc-homepage-platform-icon,
.wc-homepage-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 20px;
  color: #1257c0;
}

.wc-homepage-module-icon,
.wc-homepage-platform-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, rgba(15, 98, 216, 0.12), rgba(15, 98, 216, 0.04));
}

.wc-homepage-why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(180deg, rgba(248, 171, 72, 0.18), rgba(248, 171, 72, 0.08));
  color: #c97905;
}

.wc-homepage-module-icon svg,
.wc-homepage-platform-icon svg,
.wc-homepage-why-icon svg {
  width: 28px;
  height: 28px;
}

.wc-homepage-module-top strong {
  color: #0f58c8;
  font-family: var(--wc-font-display);
  font-size: 30px;
  line-height: 1;
}

.wc-homepage-module-card h3,
.wc-homepage-platform-card h3,
.wc-homepage-why-card h3,
.wc-homepage-update-card h3,
.wc-homepage-access-card h3 {
  margin: 0;
  color: #14213d;
  font-family: var(--wc-font-display);
  font-size: 24px;
  line-height: 1.15;
}

.wc-homepage-module-meta {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 98, 216, 0.06);
  color: #355882;
  font-size: 12px;
  font-weight: 700;
}

.wc-homepage-platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-homepage-point-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-homepage-point-list li {
  position: relative;
  padding-left: 18px;
  color: #4c6183;
  font-size: 14px;
  line-height: 1.6;
}

.wc-homepage-point-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1d7ef8;
}

.wc-homepage-access-copy {
  display: grid;
  gap: 14px;
}

.wc-homepage-mini-stack {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.wc-homepage-mini-card {
  padding: 18px 20px;
}

.wc-homepage-mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: #18315d;
  font-family: var(--wc-font-display);
  font-size: 18px;
}

.wc-homepage-mini-card span {
  color: #5d7090;
  font-size: 14px;
  line-height: 1.65;
}

.wc-homepage-access-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.wc-homepage-access-card p {
  margin: 0;
  color: #5a6e8f;
  line-height: 1.7;
}

.wc-homepage-account-pairs {
  display: grid;
  gap: 12px;
}

.wc-homepage-account-pair {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f4f8fe;
  border: 1px solid rgba(15, 98, 216, 0.08);
}

.wc-homepage-account-pair span {
  color: #6680a6;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wc-homepage-account-pair strong {
  color: #15305f;
  font-size: 15px;
}

.wc-homepage-login-form {
  display: grid;
  gap: 18px;
}

.wc-homepage-login-form .wc-field {
  gap: 10px;
}

.wc-homepage-login-form .wc-field span {
  color: #5c6d8a;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wc-homepage-login-form .wc-field input {
  min-height: 58px;
  border-color: rgba(15, 98, 216, 0.12);
  background: #f7faff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #16315f;
}

.wc-homepage-login-form .wc-field input::placeholder {
  color: #8ea1bf;
}

.wc-homepage-login-form .wc-field input:focus {
  border-color: rgba(15, 98, 216, 0.22);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 98, 216, 0.1);
}

.wc-homepage-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wc-homepage-why-grid,
.wc-homepage-update-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-homepage-inline-link {
  color: #155bc0;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wc-homepage-inline-link:hover {
  color: #0e4cad;
  transform: translateY(-1px);
}

.wc-homepage-update-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6a7f9f;
  font-size: 12px;
  font-weight: 700;
}

.wc-homepage-footer {
  display: grid;
  gap: 24px;
  margin-top: 8px;
  padding: 30px;
  border: 1px solid rgba(15, 98, 216, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.wc-homepage-footer-brand strong {
  color: #15284d;
  font-family: var(--wc-font-display);
  font-size: 24px;
}

.wc-homepage-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.wc-homepage-footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.wc-homepage-footer-grid span {
  color: #5f7393;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-homepage-footer-grid a,
.wc-homepage-footer-bottom span,
.wc-homepage-socials a {
  color: #29466f;
  font-size: 14px;
  line-height: 1.6;
}

.wc-homepage-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wc-homepage-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 98, 216, 0.08);
}

.wc-homepage-footer-bottom span {
  color: #5f7393;
}

@media (prefers-reduced-motion: no-preference) {
  .wc-homepage-hero,
  .wc-homepage-module-card,
  .wc-homepage-platform-card,
  .wc-homepage-why-card,
  .wc-homepage-update-card,
  .wc-homepage-access-card {
    animation: wcHomepageFadeUp 0.6s ease both;
  }

  .wc-homepage-module-card:nth-child(2),
  .wc-homepage-platform-card:nth-child(2),
  .wc-homepage-why-card:nth-child(2),
  .wc-homepage-update-card:nth-child(2) {
    animation-delay: 0.08s;
  }

  .wc-homepage-module-card:nth-child(3),
  .wc-homepage-platform-card:nth-child(3),
  .wc-homepage-why-card:nth-child(3),
  .wc-homepage-update-card:nth-child(3) {
    animation-delay: 0.16s;
  }

  .wc-homepage-module-card:nth-child(4) {
    animation-delay: 0.24s;
  }
}

@keyframes wcHomepageFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .wc-homepage-hero,
  .wc-homepage-section--split,
  .wc-homepage-footer-grid {
    grid-template-columns: 1fr;
  }

  .wc-homepage-preview {
    justify-content: stretch;
  }

  .wc-homepage-preview-shell {
    width: 100%;
  }

  .wc-homepage-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-homepage-platform-grid,
  .wc-homepage-why-grid,
  .wc-homepage-update-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.wc-homepage-body.wc-home-menu-open {
    overflow: hidden;
  }

  .wc-homepage-nav-inner {
    flex-wrap: wrap;
  }

  .wc-homepage-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(15, 98, 216, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 44px rgba(18, 47, 97, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .wc-homepage-nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .wc-homepage-nav-link {
    width: 100%;
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wc-homepage-menu-button {
    position: relative;
    display: inline-flex;
  }

  .wc-homepage-text-button,
  .wc-homepage-ghost-button {
    display: none;
  }

  .wc-homepage-section-head--row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .wc-homepage-body .wc-app-shell--home {
    width: min(100% - 20px, 1240px);
  }

  .wc-homepage-nav {
    top: max(8px, env(safe-area-inset-top));
    margin-bottom: 18px;
  }

  .wc-homepage-nav-inner,
  .wc-homepage-hero,
  .wc-homepage-section,
  .wc-homepage-footer {
    border-radius: 24px;
  }

  .wc-homepage-nav-inner,
  .wc-homepage-section,
  .wc-homepage-footer,
  .wc-homepage-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wc-homepage-brand-copy small {
    display: none;
  }

  .wc-homepage-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .wc-homepage-preview-grid,
  .wc-homepage-module-grid,
  .wc-homepage-platform-grid,
  .wc-homepage-why-grid,
  .wc-homepage-update-grid,
  .wc-homepage-footer-grid {
    grid-template-columns: 1fr;
  }

  .wc-homepage-preview-card strong,
  .wc-homepage-module-top strong {
    font-size: 26px;
  }

  .wc-homepage-access-card {
    padding: 22px;
  }

  .wc-homepage-cta-row,
  .wc-homepage-access-actions {
    display: grid;
  }

  .wc-homepage-cta-row > *,
  .wc-homepage-access-actions > * {
    width: 100%;
  }

  .wc-homepage-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile app reference homepage */

body.wc-appview-body {
  color-scheme: light;
  background:
    radial-gradient(circle at top, rgba(13, 97, 216, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  color: #13284a;
}

.wc-appview-body a,
.wc-appview-body button,
.wc-appview-body input {
  font-family: var(--wc-font-body);
}

.wc-appview-body .wc-app-shell--appview {
  width: min(100% - 28px, 1100px);
  padding: max(16px, env(safe-area-inset-top)) 0 calc(28px + env(safe-area-inset-bottom));
}

.wc-appview-stage {
  display: flex;
  justify-content: center;
}

.wc-appview-device {
  position: relative;
  width: min(100%, 430px);
  height: min(900px, calc(100vh - 42px));
  padding: 12px;
  border-radius: 48px;
  background: linear-gradient(180deg, #2a3654 0%, #0a0f1d 100%);
  box-shadow:
    0 26px 64px rgba(18, 34, 66, 0.22),
    inset 0 0 0 3px rgba(101, 119, 159, 0.52),
    inset 0 0 0 8px rgba(6, 10, 20, 0.92);
}

.wc-appview-device::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.wc-appview-power-button,
.wc-appview-volume-buttons {
  position: absolute;
  background: linear-gradient(180deg, #4d5773 0%, #20273a 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wc-appview-power-button {
  top: 220px;
  right: -5px;
  width: 6px;
  height: 122px;
  border-radius: 0 6px 6px 0;
}

.wc-appview-volume-buttons {
  top: 160px;
  left: -5px;
  width: 6px;
  height: 164px;
  border-radius: 6px 0 0 6px;
}

.wc-appview-screen {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 38px;
  background: linear-gradient(180deg, #0f67df 0%, #0848a9 47%, #eef3fa 47%, #eef3fa 100%);
  overflow: auto;
  scrollbar-width: none;
}

.wc-appview-screen::-webkit-scrollbar {
  display: none;
}

.wc-appview-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 128px;
  height: 28px;
  border-radius: 999px;
  background: #050a16;
  transform: translateX(-50%);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.04);
  z-index: 5;
}

.wc-appview-notch::before,
.wc-appview-notch::after {
  content: "";
  position: absolute;
  top: 8px;
  border-radius: 999px;
}

.wc-appview-notch::before {
  left: 18px;
  width: 52px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.wc-appview-notch::after {
  right: 16px;
  width: 12px;
  height: 12px;
  background: rgba(76, 140, 255, 0.32);
}

.wc-appview-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 42px 20px 18px;
  color: #ffffff;
}

.wc-appview-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.wc-appview-brand strong {
  font-family: var(--wc-font-display);
  font-size: 17px;
  font-weight: 800;
}

.wc-appview-brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 42px;
}

.wc-appview-brand-letter {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.wc-appview-brand-orbit {
  position: absolute;
  inset: 0;
}

.wc-appview-brand-orbit::before,
.wc-appview-brand-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.wc-appview-brand-orbit::before {
  top: 8px;
  left: 2px;
  width: 74px;
  height: 24px;
  border: 7px solid #ff8c1b;
  border-right-color: transparent;
  transform: rotate(-9deg);
}

.wc-appview-brand-orbit::after {
  top: 10px;
  right: 2px;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.78);
  background: transparent;
}

.wc-appview-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.wc-appview-header-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
}

.wc-appview-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.wc-appview-icon {
  width: 32px;
  height: 32px;
}

.wc-appview-icon svg {
  width: 100%;
  height: 100%;
}

.wc-appview-notification-badge {
  position: absolute;
  top: 1px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27px;
  height: 27px;
  padding: 0 6px;
  border: 3px solid #0d61d8;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7c2d 0%, #f2491e 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.wc-appview-hero {
  position: relative;
  z-index: 1;
  padding: 0 0 54px;
  color: #ffffff;
  overflow: hidden;
}

.wc-appview-hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -94px;
  left: -14%;
  height: 180px;
  border-radius: 50%;
  background: #eef3fa;
  z-index: 0;
}

.wc-appview-hero-media {
  position: relative;
  z-index: 2;
  margin: 0 16px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 32px rgba(0, 50, 128, 0.2);
}

.wc-appview-hero-illustration {
  width: 100%;
  height: auto;
}

.wc-appview-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 26px 22px 6px;
  text-align: center;
}

.wc-appview-hero-copy h1 {
  margin: 0;
  font-family: var(--wc-font-display);
  font-size: clamp(2.1rem, 8vw, 3.5rem);
  line-height: 1.05;
}

.wc-appview-hero-subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}

.wc-appview-hero-subtitle span {
  flex: 1 1 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
}

.wc-appview-hero-subtitle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 8px 18px rgba(6, 32, 78, 0.2);
}

.wc-appview-hero-note {
  margin: 0;
  max-width: 334px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.65;
  text-shadow: 0 8px 18px rgba(6, 32, 78, 0.18);
}

.wc-appview-primary-cta,
.wc-appview-campaign-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 244px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff9c22 0%, #ff6e00 100%);
  box-shadow: 0 14px 28px rgba(255, 111, 0, 0.3);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-appview-primary-cta:hover,
.wc-appview-campaign-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(255, 111, 0, 0.34);
}

.wc-appview-features,
.wc-appview-campaigns {
  position: relative;
  z-index: 2;
  padding: 0 14px;
}

.wc-appview-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: -18px;
}

.wc-appview-feature-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 144px;
  padding: 16px 10px 14px;
  border: 1px solid rgba(17, 77, 169, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 12px 24px rgba(32, 65, 119, 0.1);
  text-align: center;
}

.wc-appview-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #245cb7;
}

.wc-appview-feature-card:nth-child(2) .wc-appview-feature-icon {
  color: #1b74c8;
}

.wc-appview-feature-card:nth-child(3) .wc-appview-feature-icon {
  color: #2b80d8;
}

.wc-appview-feature-card:nth-child(4) .wc-appview-feature-icon {
  color: #ff8412;
}

.wc-appview-feature-icon svg {
  width: 100%;
  height: 100%;
}

.wc-appview-feature-card strong {
  color: #18386a;
  font-size: 14px;
  font-weight: 800;
}

.wc-appview-feature-card small {
  color: #6880a5;
  font-size: 11px;
  line-height: 1.45;
}

.wc-appview-campaigns {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.wc-appview-section-head {
  padding: 0 8px;
  border-bottom: 1px solid #d8e4f3;
}

.wc-appview-section-head h2 {
  margin: 0 0 10px;
  color: #18386a;
  font-family: var(--wc-font-display);
  font-size: 24px;
}

.wc-appview-campaign-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  gap: 10px;
  align-items: end;
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2b83e9 0%, #0d58ca 100%);
  box-shadow: 0 16px 28px rgba(20, 77, 169, 0.22);
  overflow: hidden;
}

.wc-appview-campaign-card::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 54px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.wc-appview-campaign-copy,
.wc-appview-campaign-art {
  position: relative;
  z-index: 1;
}

.wc-appview-campaign-copy {
  display: grid;
  gap: 10px;
  padding-left: 6px;
  color: #ffffff;
}

.wc-appview-campaign-copy strong {
  font-family: var(--wc-font-display);
  font-size: 20px;
}

.wc-appview-campaign-highlight {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.wc-appview-campaign-big {
  color: #0d3f96;
  font-family: var(--wc-font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.9;
}

.wc-appview-campaign-text {
  padding-bottom: 8px;
  color: #163a79;
  font-size: 19px;
  font-weight: 800;
}

.wc-appview-campaign-button {
  min-width: 0;
  width: fit-content;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 14px;
}

.wc-appview-campaign-art {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.wc-appview-campaign-illustration {
  width: 156px;
  height: auto;
}

.wc-appview-tabbar {
  position: sticky;
  bottom: 8px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: auto 12px 12px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  border: 1px solid rgba(13, 80, 169, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(19, 54, 111, 0.12);
  backdrop-filter: blur(16px);
}

.wc-appview-tab,
.wc-appview-tab-button {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #2f548b;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  border-radius: 20px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.wc-appview-tab:hover,
.wc-appview-tab-button:hover {
  transform: translateY(-1px);
  background: rgba(13, 97, 216, 0.06);
}

.wc-appview-tab.is-current {
  background: linear-gradient(180deg, rgba(13, 97, 216, 0.14), rgba(13, 97, 216, 0.06));
  color: #0f58c5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-appview-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #f1f6ff;
  color: #2b59a4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.wc-appview-tab-icon svg {
  width: 100%;
  height: 100%;
}

.wc-appview-tab.is-current .wc-appview-tab-icon {
  background: linear-gradient(135deg, #1d7ef8 0%, #0d59d8 100%);
  color: #ffffff;
  box-shadow: 0 12px 18px rgba(13, 89, 216, 0.22);
}

.wc-appview-tab span:last-child,
.wc-appview-tab-button span:last-child {
  line-height: 1.15;
}

.wc-appview-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.wc-appview-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wc-appview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 19, 41, 0.42);
  cursor: pointer;
}

.wc-appview-sheet {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 -18px 40px rgba(16, 40, 84, 0.18);
  transform: translateY(100%);
  transition: transform 0.24s ease;
}

.wc-appview-overlay.is-open .wc-appview-sheet {
  transform: translateY(0);
}

.wc-appview-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wc-appview-sheet-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13, 97, 216, 0.08);
  color: #1457b2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-appview-sheet-head h2 {
  margin: 0;
  color: #17376a;
  font-family: var(--wc-font-display);
  font-size: 24px;
}

.wc-appview-sheet-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: #eff5fd;
  color: #2a4a7f;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.wc-appview-sheet-body {
  display: grid;
  gap: 16px;
}

.wc-appview-sheet-card,
.wc-appview-metrics article,
.wc-appview-sheet-contact {
  border: 1px solid rgba(15, 98, 216, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 47, 97, 0.08);
}

.wc-appview-sheet-card,
.wc-appview-sheet-contact {
  padding: 16px 18px;
}

.wc-appview-sheet-card strong {
  display: block;
  margin-bottom: 6px;
  color: #163869;
  font-family: var(--wc-font-display);
  font-size: 19px;
}

.wc-appview-sheet-card p,
.wc-appview-sheet-contact a,
.wc-appview-sheet-contact span {
  margin: 0;
  color: #5f7393;
  font-size: 14px;
  line-height: 1.65;
}

.wc-appview-sheet-links {
  display: grid;
  gap: 10px;
}

.wc-appview-sheet-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(15, 98, 216, 0.1);
  border-radius: 18px;
  background: #ffffff;
  color: #18386a;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(17, 47, 97, 0.06);
}

.wc-appview-sheet-link--button {
  width: 100%;
  cursor: pointer;
}

.wc-appview-sheet-contact {
  display: grid;
  gap: 6px;
}

.wc-appview-sheet-contact span {
  color: #1e4e9e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-appview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wc-appview-metrics article {
  display: grid;
  gap: 4px;
  padding: 16px 12px;
  text-align: center;
}

.wc-appview-metrics strong {
  color: #0f59c7;
  font-family: var(--wc-font-display);
  font-size: 28px;
  line-height: 1;
}

.wc-appview-metrics span {
  color: #647a9d;
  font-size: 12px;
  line-height: 1.4;
}

.wc-appview-sheet-actions {
  display: grid;
  gap: 12px;
}

.wc-appview-login-form {
  display: grid;
  gap: 16px;
}

.wc-appview-body .wc-field {
  gap: 9px;
}

.wc-appview-body .wc-field span {
  color: #5f7393;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wc-appview-body .wc-field input {
  min-height: 56px;
  border-color: rgba(15, 98, 216, 0.12);
  background: #f7faff;
  color: #16315f;
}

.wc-appview-body .wc-field input::placeholder {
  color: #8ca1bf;
}

.wc-appview-body .wc-field input:focus {
  border-color: rgba(15, 98, 216, 0.24);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 98, 216, 0.1);
}

.wc-appview-body .wc-primary-button,
.wc-appview-body .wc-secondary-button {
  min-height: 52px;
  border-radius: 16px;
  font-size: 14px;
}

.wc-appview-body .wc-primary-button {
  background: linear-gradient(135deg, #1d7ef8 0%, #0d59d8 100%);
  box-shadow: 0 14px 24px rgba(13, 89, 216, 0.2);
}

.wc-appview-body .wc-secondary-button {
  background: #ffffff;
  border-color: rgba(15, 98, 216, 0.12);
  color: #2154a6;
}

.wc-appview-body .wc-message-banner {
  margin-bottom: 0;
  background: rgba(255, 243, 243, 0.92);
  border-color: rgba(220, 76, 76, 0.14);
}

.wc-appview-body .wc-message-banner strong,
.wc-appview-body .wc-message-banner p {
  color: #7e2d2d;
}

body.wc-appview-body.wc-appview-sheet-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .wc-appview-device,
  .wc-appview-feature-card,
  .wc-appview-campaign-card {
    animation: wcAppviewFadeUp 0.52s ease both;
  }

  .wc-appview-feature-card:nth-child(2) {
    animation-delay: 0.05s;
  }

  .wc-appview-feature-card:nth-child(3) {
    animation-delay: 0.1s;
  }

  .wc-appview-feature-card:nth-child(4) {
    animation-delay: 0.15s;
  }
}

@keyframes wcAppviewFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .wc-appview-body .wc-app-shell--appview {
    width: 100%;
    padding: 0;
  }

  .wc-appview-device {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wc-appview-device::before,
  .wc-appview-power-button,
  .wc-appview-volume-buttons {
    display: none;
  }

  .wc-appview-screen {
    height: auto;
    min-height: 100vh;
    border-radius: 0;
  }

  .wc-appview-notch {
    top: 10px;
  }
}

@media (max-width: 420px) {
  .wc-appview-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wc-appview-hero-media {
    margin-left: 12px;
    margin-right: 12px;
  }

  .wc-appview-hero-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wc-appview-features,
  .wc-appview-campaigns {
    padding-left: 12px;
    padding-right: 12px;
  }

  .wc-appview-feature-card {
    min-height: 136px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .wc-appview-feature-card strong {
    font-size: 13px;
  }

  .wc-appview-feature-card small {
    font-size: 10px;
  }

  .wc-appview-campaign-card {
    grid-template-columns: 1fr 122px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .wc-appview-tabbar {
    margin-left: 10px;
    margin-right: 10px;
    gap: 6px;
  }

  .wc-appview-campaign-big {
    font-size: 48px;
  }

  .wc-appview-campaign-text {
    font-size: 17px;
  }

  .wc-appview-campaign-illustration {
    width: 138px;
  }

  .wc-appview-sheet {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Dynamic island + popcard refinement */

body.wc-appview-body {
  background:
    radial-gradient(circle at top, rgba(13, 97, 216, 0.16), transparent 24%),
    linear-gradient(180deg, #f6f9fe 0%, #edf2f9 100%);
}

.wc-appview-body .wc-app-shell--appview {
  width: min(100% - 24px, 1100px);
  padding-top: max(14px, env(safe-area-inset-top));
}

.wc-appview-device {
  box-shadow:
    0 30px 72px rgba(18, 34, 66, 0.24),
    inset 0 0 0 3px rgba(101, 119, 159, 0.5),
    inset 0 0 0 8px rgba(6, 10, 20, 0.94);
}

.wc-appview-screen {
  background: linear-gradient(180deg, #0e69df 0%, #0c56bc 32%, #0b4698 56%, #edf2fa 56%, #edf2fa 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wc-appview-screen::before,
.wc-appview-screen::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  pointer-events: none;
}

.wc-appview-screen::before {
  height: 320px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.16), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 72%);
  z-index: 0;
}

.wc-appview-screen::after {
  top: 138px;
  height: 168px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(130% 120% at 50% 100%, rgba(129, 191, 255, 0.42) 0%, rgba(129, 191, 255, 0) 66%);
  opacity: 0.95;
  z-index: 0;
}

.wc-appview-header,
.wc-appview-hero,
.wc-appview-features,
.wc-appview-campaigns,
.wc-appview-tabbar {
  position: relative;
  z-index: 1;
}

.wc-appview-header {
  padding: 22px 18px 14px;
  gap: 12px;
}

.wc-appview-brand {
  min-width: 0;
  color: #ffffff;
  text-decoration: none;
}

.wc-appview-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wc-appview-brand-copy small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wc-appview-brand-copy strong {
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wc-appview-island {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 24, 63, 0.24);
  box-shadow:
    0 14px 28px rgba(6, 18, 47, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.wc-appview-island-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.wc-appview-island-button:hover,
.wc-appview-island-button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.wc-appview-island-button[aria-expanded="true"] {
  background: #ffffff;
  color: #0d58c6;
}

.wc-appview-icon {
  width: 22px;
  height: 22px;
}

.wc-appview-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-appview-notification-badge {
  position: absolute;
  top: -2px;
  right: -1px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 2px solid #0c58c2;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8f3a 0%, #ff5c3e 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 15px;
  text-align: center;
}

.wc-appview-popcard-stack {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.wc-appview-popcard-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 22, 53, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.wc-appview-popcard-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.wc-appview-popcard {
  position: absolute;
  top: 84px;
  right: 16px;
  left: 16px;
  max-width: 356px;
  margin-left: auto;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(17, 76, 156, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 30px 58px rgba(15, 38, 84, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.wc-appview-popcard.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wc-appview-popcard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wc-appview-popcard-head h2 {
  margin: 0;
  color: #112b57;
  font-family: var(--wc-font-display);
  font-size: 24px;
  line-height: 1.08;
}

.wc-appview-popcard-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: #2465c6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-appview-popcard-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  background: #eef5ff;
  color: #2154a6;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.wc-appview-popcard-copy,
.wc-appview-popcard-note {
  margin: 0;
  color: #5d7293;
  font-size: 14px;
  line-height: 1.65;
}

.wc-appview-popcard-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5f9ff;
  color: #456288;
}

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

.wc-appview-popcard-actions .wc-primary-button,
.wc-appview-popcard-actions .wc-secondary-button {
  width: 100%;
}

.wc-appview-menu-grid {
  display: grid;
  gap: 10px;
}

.wc-appview-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(15, 98, 216, 0.08);
  border-radius: 18px;
  background: #f7fbff;
  color: #173b6b;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.wc-appview-menu-link:hover,
.wc-appview-menu-link:focus-visible {
  border-color: rgba(15, 98, 216, 0.2);
  background: #ffffff;
  transform: translateY(-1px);
}

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

.wc-appview-support-grid article,
.wc-appview-notification-item,
.wc-appview-empty-card {
  padding: 16px;
  border: 1px solid rgba(15, 98, 216, 0.08);
  border-radius: 20px;
  background: #f8fbff;
}

.wc-appview-support-grid span {
  display: block;
  margin-bottom: 6px;
  color: #6680a4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-appview-support-grid strong {
  color: #123562;
  font-size: 15px;
  line-height: 1.45;
}

.wc-appview-notification-list {
  display: grid;
  gap: 12px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.wc-appview-notification-item {
  display: grid;
  gap: 10px;
}

.wc-appview-notification-top {
  display: flex;
  justify-content: flex-start;
}

.wc-appview-notification-item strong,
.wc-appview-empty-card strong {
  color: #112b57;
  font-family: var(--wc-font-display);
  font-size: 17px;
}

.wc-appview-notification-item p,
.wc-appview-empty-card p {
  margin: 0;
  color: #5d7293;
  font-size: 14px;
  line-height: 1.65;
}

.wc-appview-empty-card {
  display: grid;
  gap: 8px;
}

.wc-appview-hero {
  gap: 16px;
  padding-top: 6px;
}

.wc-appview-hero-media {
  margin: 4px 14px 0;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 30px rgba(8, 33, 78, 0.18);
}

.wc-appview-hero-illustration {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.wc-appview-hero-copy {
  display: grid;
  gap: 12px;
  padding: 6px 20px 28px;
  text-align: center;
  color: #ffffff;
}

.wc-appview-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: clamp(2.2rem, 7vw, 3.25rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.wc-appview-hero-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.wc-appview-hero-subtitle span {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.wc-appview-hero-subtitle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.wc-appview-hero-note {
  margin: 0 auto;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.wc-appview-primary-cta,
.wc-appview-campaign-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff9f2e 0%, #ff7a00 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(255, 126, 11, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-appview-primary-cta {
  justify-self: center;
}

.wc-appview-primary-cta:hover,
.wc-appview-campaign-button:hover,
.wc-appview-primary-cta:focus-visible,
.wc-appview-campaign-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255, 126, 11, 0.34);
}

.wc-appview-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 14px;
}

.wc-appview-feature-card {
  min-height: 138px;
  padding: 18px 12px;
  border: 1px solid rgba(17, 76, 156, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 14px 28px rgba(15, 38, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-appview-feature-card:hover,
.wc-appview-feature-card:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(15, 38, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-appview-feature-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  color: #1a6cdc;
}

.wc-appview-feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wc-appview-feature-card strong {
  display: block;
  color: #153867;
  font-family: var(--wc-font-display);
  font-size: 15px;
  line-height: 1.18;
  text-wrap: balance;
}

.wc-appview-feature-card small {
  display: block;
  margin-top: 6px;
  color: #6a81a3;
  font-size: 11px;
  line-height: 1.45;
}

.wc-appview-campaigns {
  display: grid;
  gap: 14px;
  padding: 18px 14px calc(110px + env(safe-area-inset-bottom));
}

.wc-appview-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wc-appview-section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(21, 67, 128, 0.12);
}

.wc-appview-section-head h2 {
  margin: 0;
  color: #17376a;
  font-family: var(--wc-font-display);
  font-size: 20px;
}

.wc-appview-campaign-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(135deg, #1f7bec 0%, #0e56c2 100%);
  box-shadow: 0 18px 34px rgba(13, 89, 190, 0.18);
}

.wc-appview-campaign-copy {
  display: grid;
  gap: 12px;
  color: #ffffff;
}

.wc-appview-campaign-copy strong {
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 18px;
  line-height: 1.1;
}

.wc-appview-campaign-highlight {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.wc-appview-campaign-big {
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.wc-appview-campaign-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.wc-appview-campaign-art {
  display: flex;
  justify-content: flex-end;
}

.wc-appview-campaign-illustration {
  width: 144px;
  height: auto;
}

.wc-appview-tabbar {
  position: sticky;
  bottom: max(10px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: auto 14px 14px;
  padding: 10px;
  border: 1px solid rgba(17, 76, 156, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 22px 42px rgba(17, 46, 96, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

.wc-appview-tab {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 72px;
  padding: 10px 6px 8px;
  border-radius: 22px;
  color: #385985;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.wc-appview-tab::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 18px;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.wc-appview-tab:hover,
.wc-appview-tab:focus-visible {
  color: #0f5dca;
  transform: translateY(-1px);
}

.wc-appview-tab.is-current {
  color: #0f5dca;
}

.wc-appview-tab.is-current::before {
  background: linear-gradient(180deg, rgba(20, 109, 230, 0.12), rgba(20, 109, 230, 0.02));
  box-shadow: inset 0 0 0 1px rgba(13, 97, 216, 0.08);
}

.wc-appview-tab > span {
  position: relative;
  z-index: 1;
}

.wc-appview-tab-icon {
  width: 24px;
  height: 24px;
}

.wc-appview-tab-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

body.wc-service-page-body {
  background:
    radial-gradient(circle at top left, rgba(47, 75, 121, 0.28), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 156, 62, 0.14), transparent 22%),
    linear-gradient(180deg, #edf2f8 0%, #dfe7f1 100%);
  --wc-service-ink: #19345b;
  --wc-service-muted: #687f9d;
  --wc-service-line: rgba(33, 78, 146, 0.08);
  --wc-service-blue: #294c82;
  --wc-service-blue-deep: #203a66;
  --wc-service-orange: #ff8a1f;
}

.wc-service-page-body .wc-appview-screen {
  background: linear-gradient(180deg, #31507f 0%, #243b67 27%, #203457 42%, #edf2fa 42%, #edf2fa 100%);
}

.wc-service-page-body .wc-appview-screen::before {
  height: 292px;
}

.wc-service-page-body .wc-appview-screen::after {
  top: 118px;
  height: 156px;
  opacity: 0.88;
}

.wc-appview-service-hero {
  display: grid;
  gap: 14px;
  padding: 10px 14px 22px;
}

.wc-appview-service-hero-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 22px 36px rgba(10, 31, 72, 0.18);
  overflow: hidden;
}

.wc-appview-service-hero-card::before,
.wc-appview-service-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.wc-appview-service-hero-card::before {
  top: -44px;
  right: -52px;
  width: 148px;
  height: 148px;
  background: rgba(255, 255, 255, 0.08);
}

.wc-appview-service-hero-card::after {
  left: -20px;
  bottom: -72px;
  width: 124px;
  height: 124px;
  background: rgba(255, 255, 255, 0.06);
}

.wc-appview-service-hero-top,
.wc-appview-service-copy,
.wc-appview-service-chips,
.wc-appview-service-actions,
.wc-appview-service-hero-stats {
  position: relative;
  z-index: 1;
}

.wc-appview-service-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wc-appview-service-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 26px rgba(8, 33, 78, 0.14);
  color: #ffffff;
}

.wc-appview-service-pill-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.wc-appview-service-pill-icon svg {
  width: 100%;
  height: 100%;
}

.wc-appview-service-pill div {
  display: grid;
  gap: 4px;
}

.wc-appview-service-pill small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wc-appview-service-pill strong {
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 18px;
  line-height: 1;
}

.wc-appview-service-hero-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-appview-service-copy {
  display: grid;
  gap: 10px;
  color: #ffffff;
}

.wc-appview-service-kicker {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-appview-service-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.wc-appview-service-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.72;
  max-width: 32ch;
}

.wc-appview-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 2px;
}

.wc-appview-service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

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

.wc-appview-service-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wc-appview-service-hero-stats article {
  display: grid;
  gap: 6px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.wc-appview-service-hero-stats strong {
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wc-appview-service-hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.wc-appview-service-overview-grid,
.wc-appview-service-launch-grid,
.wc-appview-service-aftercare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wc-appview-service-overview-card,
.wc-appview-service-launch-card,
.wc-appview-service-aftercare-card {
  min-width: 0;
  border: 1px solid var(--wc-service-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 18px 30px rgba(15, 38, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-appview-service-overview-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.wc-appview-service-overview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wc-appview-service-overview-icon,
.wc-appview-service-launch-icon,
.wc-appview-service-aftercare-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(49, 80, 127, 0.14), rgba(49, 80, 127, 0.08));
  color: var(--wc-service-blue);
}

.wc-appview-service-overview-icon svg,
.wc-appview-service-launch-icon svg,
.wc-appview-service-aftercare-icon svg {
  width: 100%;
  height: 100%;
}

.wc-appview-service-overview-badge,
.wc-appview-service-launch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.12);
  color: #d06d11;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wc-appview-service-overview-card strong,
.wc-appview-service-aftercare-card strong {
  color: var(--wc-service-ink);
  font-family: var(--wc-font-display);
  font-size: 19px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.wc-appview-service-overview-card span {
  color: var(--wc-service-blue-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.wc-appview-service-overview-card small {
  color: var(--wc-service-muted);
  font-size: 11px;
  line-height: 1.5;
}

.wc-appview-service-section {
  display: grid;
  gap: 14px;
  padding: 0 14px 18px;
}

.wc-appview-service-section--last {
  padding-bottom: 8px;
}

.wc-appview-service-grid,
.wc-appview-service-flow {
  display: grid;
  gap: 12px;
}

.wc-appview-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wc-appview-service-card,
.wc-appview-service-step,
.wc-appview-service-cta-card {
  min-width: 0;
  border: 1px solid var(--wc-service-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 18px 30px rgba(15, 38, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-appview-service-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.wc-appview-service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wc-appview-service-card-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(49, 80, 127, 0.14), rgba(49, 80, 127, 0.08));
  color: #29589e;
}

.wc-appview-service-card-icon svg {
  width: 100%;
  height: 100%;
}

.wc-appview-service-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 156, 62, 0.14);
  color: #d36c0f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wc-appview-service-card h3,
.wc-appview-service-step strong,
.wc-appview-service-cta-card h2 {
  margin: 0;
  color: var(--wc-service-ink);
  font-family: var(--wc-font-display);
}

.wc-appview-service-card h3 {
  font-size: 18px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.wc-appview-service-card p,
.wc-appview-service-step p,
.wc-appview-service-cta-card p {
  margin: 0;
  color: var(--wc-service-muted);
  font-size: 13px;
  line-height: 1.62;
}

.wc-appview-service-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-appview-service-list li {
  position: relative;
  padding-left: 18px;
  color: #29496f;
  font-size: 12px;
  line-height: 1.55;
}

.wc-appview-service-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #335281 0%, #ff8a1f 100%);
}

.wc-appview-service-step {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 18px 18px 62px;
}

.wc-appview-service-step strong {
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.wc-appview-service-step-index {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #335281 0%, #26406d 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.wc-appview-service-cta-card {
  display: grid;
  gap: 18px;
  padding: 22px 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 31, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.wc-appview-service-cta-copy {
  display: grid;
  gap: 10px;
}

.wc-appview-service-cta-kicker {
  color: #32517f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-appview-service-cta-card h2 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.wc-appview-service-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wc-appview-service-launch-card {
  position: relative;
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wc-appview-service-launch-card:hover,
.wc-appview-service-launch-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(41, 76, 130, 0.16);
  box-shadow:
    0 20px 34px rgba(15, 38, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-appview-service-launch-card strong {
  color: var(--wc-service-ink);
  font-family: var(--wc-font-display);
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.wc-appview-service-launch-card small {
  color: var(--wc-service-muted);
  font-size: 11px;
  line-height: 1.5;
}

.wc-appview-service-launch-card .wc-appview-service-launch-badge {
  justify-self: flex-start;
}

.wc-appview-service-aftercare-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.wc-appview-service-aftercare-card p {
  margin: 0;
  color: var(--wc-service-muted);
  font-size: 12px;
  line-height: 1.6;
}

.wc-appview-service-popcard {
  max-height: min(72vh, 560px);
  overflow: auto;
  padding-right: 18px;
  scrollbar-width: none;
}

.wc-appview-service-popcard::-webkit-scrollbar {
  display: none;
}

.wc-appview-service-popcard-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-appview-service-popcard-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f5f9ff;
  color: #335381;
  font-size: 11px;
  font-weight: 800;
}

.wc-appview-service-popcard-list {
  display: grid;
  gap: 10px;
}

.wc-appview-service-popcard-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--wc-service-line);
  border-radius: 18px;
  background: #f8fbff;
}

.wc-appview-service-popcard-item strong {
  color: var(--wc-service-ink);
  font-size: 14px;
  line-height: 1.55;
}

.wc-appview-service-popcard-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wc-service-blue) 0%, var(--wc-service-orange) 100%);
  flex: 0 0 auto;
}

.wc-appview-service-popcard-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5f9ff;
  color: #4f6789;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 520px) {
  .wc-appview-service-actions,
  .wc-appview-service-cta-actions {
    grid-template-columns: 1fr;
  }

  .wc-appview-service-hero-top {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wc-appview-service-pill {
    width: 100%;
  }

  .wc-appview-service-hero-status {
    justify-self: flex-start;
  }

  .wc-appview-service-hero-stats,
  .wc-appview-service-overview-grid,
  .wc-appview-service-launch-grid,
  .wc-appview-service-grid,
  .wc-appview-service-aftercare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .wc-appview-service-hero,
  .wc-appview-service-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .wc-appview-service-pill,
  .wc-appview-service-overview-card,
  .wc-appview-service-launch-card,
  .wc-appview-service-card,
  .wc-appview-service-step,
  .wc-appview-service-aftercare-card,
  .wc-appview-service-cta-card {
    border-radius: 22px;
  }

  .wc-appview-service-copy h1 {
    font-size: 34px;
  }

  .wc-appview-service-hero-card,
  .wc-appview-service-overview-card,
  .wc-appview-service-launch-card,
  .wc-appview-service-card,
  .wc-appview-service-aftercare-card {
    padding: 14px;
  }

  .wc-appview-service-hero-stats {
    grid-template-columns: 1fr;
  }

  .wc-appview-service-overview-grid,
  .wc-appview-service-launch-grid,
  .wc-appview-service-grid,
  .wc-appview-service-aftercare-grid {
    grid-template-columns: 1fr;
  }

  .wc-appview-service-overview-card strong,
  .wc-appview-service-launch-card strong,
  .wc-appview-service-card h3,
  .wc-appview-service-step strong {
    font-size: 17px;
  }

  .wc-appview-service-popcard {
    padding-right: 16px;
  }
}

body.wc-appview-body.wc-appview-popcard-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .wc-appview-popcard {
    right: 14px;
    left: 14px;
    max-width: none;
  }

  .wc-appview-support-grid,
  .wc-appview-popcard-actions {
    grid-template-columns: 1fr;
  }

  .wc-appview-features {
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .wc-appview-feature-card {
    min-height: 128px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .wc-appview-tabbar {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 420px) {
  .wc-appview-header {
    padding: 18px 14px 12px;
  }

  .wc-appview-brand-copy strong {
    font-size: 18px;
  }

  .wc-appview-brand-copy small {
    font-size: 9px;
  }

  .wc-appview-island {
    gap: 6px;
    padding: 5px;
  }

  .wc-appview-island-button {
    width: 38px;
    height: 38px;
  }

  .wc-appview-hero-media,
  .wc-appview-hero-copy,
  .wc-appview-campaigns {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wc-appview-hero-copy {
    padding-top: 4px;
    padding-bottom: 24px;
  }

  .wc-appview-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wc-appview-feature-card strong {
    font-size: 13px;
  }

  .wc-appview-feature-card small {
    font-size: 10px;
  }

  .wc-appview-campaign-card {
    grid-template-columns: minmax(0, 1fr) 116px;
    padding: 16px;
  }

  .wc-appview-campaign-big {
    font-size: 44px;
  }

  .wc-appview-campaign-text {
    font-size: 15px;
  }

  .wc-appview-campaign-illustration {
    width: 118px;
  }

  .wc-appview-tab {
    min-height: 68px;
    font-size: 11px;
  }
}

/* Bottom island dock refinement */

.wc-appview-screen {
  padding-bottom: calc(118px + env(safe-area-inset-bottom));
}

.wc-appview-campaigns {
  padding-bottom: 20px;
}

.wc-appview-tabbar {
  position: sticky;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 7;
  align-self: center;
  width: calc(100% - 28px);
  max-width: 392px;
  margin: auto 14px 0;
  padding: 9px;
  border: 1px solid rgba(17, 76, 156, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  box-shadow:
    0 20px 42px rgba(17, 46, 96, 0.18),
    0 6px 18px rgba(17, 46, 96, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
}

.wc-appview-tabbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%);
  pointer-events: none;
}

.wc-appview-tab {
  min-height: 64px;
  gap: 5px;
  padding: 9px 4px 7px;
  border-radius: 999px;
}

.wc-appview-tab::before {
  inset: 3px;
  border-radius: 999px;
}

.wc-appview-tab.is-current::before {
  background: linear-gradient(180deg, rgba(20, 109, 230, 0.15), rgba(20, 109, 230, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(13, 97, 216, 0.1),
    0 10px 18px rgba(13, 97, 216, 0.12);
}

.wc-appview-tab-icon {
  width: 22px;
  height: 22px;
}

@media (max-width: 520px) {
  .wc-appview-screen {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  .wc-appview-tabbar {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    padding: 8px;
  }
}

@media (max-width: 420px) {
  .wc-appview-screen {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }

  .wc-appview-tabbar {
    width: calc(100% - 16px);
    margin-left: 8px;
    margin-right: 8px;
    padding: 7px;
  }

  .wc-appview-tab {
    min-height: 60px;
    font-size: 10px;
  }
}

/* Fixed bottom island layout */

.wc-appview-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.wc-appview-screen::-webkit-scrollbar {
  display: none;
}

.wc-appview-scroll-area {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  scrollbar-width: none;
  padding-bottom: calc(124px + env(safe-area-inset-bottom));
}

.wc-appview-scroll-area::-webkit-scrollbar {
  display: none;
}

.wc-appview-popcard-stack {
  z-index: 12;
}

.wc-appview-campaigns {
  padding-bottom: 8px;
}

.wc-appview-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 14;
  width: auto;
  max-width: none;
  margin: 0;
  border-radius: 28px 28px 0 0;
}

@media (max-width: 520px) {
  .wc-appview-scroll-area {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }

  .wc-appview-tabbar {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 420px) {
  .wc-appview-scroll-area {
    padding-bottom: calc(102px + env(safe-area-inset-bottom));
  }

  .wc-appview-tabbar {
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 860px) {
  body.wc-appview-body {
    background: #edf2fa;
  }

  .wc-appview-body .wc-app-shell--appview {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .wc-appview-stage {
    min-height: 100vh;
  }

  .wc-appview-device {
    width: 100%;
    max-width: none;
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wc-appview-device::before,
  .wc-appview-power-button,
  .wc-appview-volume-buttons {
    display: none;
  }

  .wc-appview-screen {
    height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }
}

/* Webcan brand palette refresh */

body.wc-appview-body {
  --wc-brand-ink: #233a65;
  --wc-brand-navy: #2f4b79;
  --wc-brand-slate: #6f86a8;
  --wc-brand-line: rgba(35, 58, 101, 0.12);
  --wc-brand-soft: #e8eef7;
  --wc-brand-paper: #f6f8fc;
  --wc-brand-glow: rgba(47, 75, 121, 0.18);
  background:
    radial-gradient(circle at top, rgba(47, 75, 121, 0.12), transparent 24%),
    linear-gradient(180deg, #f5f7fb 0%, #e9eef6 100%);
}

.wc-appview-screen {
  background: linear-gradient(180deg, #31507f 0%, #243b67 34%, #203457 57%, #edf2fa 57%, #edf2fa 100%);
}

.wc-appview-screen::before {
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 72%);
}

.wc-appview-screen::after {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(130% 120% at 50% 100%, rgba(150, 170, 201, 0.26) 0%, rgba(150, 170, 201, 0) 66%);
}

.wc-appview-header {
  padding-top: 18px;
  padding-bottom: 16px;
}

.wc-appview-brand {
  gap: 12px;
}

.wc-appview-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 24px rgba(11, 23, 46, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-appview-brand-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.wc-appview-brand-copy {
  gap: 4px;
}

.wc-appview-brand-copy small {
  color: rgba(233, 240, 251, 0.82);
  letter-spacing: 0.09em;
}

.wc-appview-brand-copy strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.wc-appview-island {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(13, 24, 46, 0.3);
  box-shadow:
    0 14px 28px rgba(10, 18, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wc-appview-island-button {
  background: rgba(255, 255, 255, 0.1);
}

.wc-appview-island-button:hover,
.wc-appview-island-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.wc-appview-island-button[aria-expanded="true"] {
  background: #f4f7fb;
  color: var(--wc-brand-ink);
}

.wc-appview-notification-badge {
  border-color: var(--wc-brand-ink);
  background: linear-gradient(135deg, #6d84a8 0%, #405c89 100%);
}

.wc-appview-popcard {
  border-color: var(--wc-brand-line);
  background: rgba(249, 251, 255, 0.98);
  box-shadow:
    0 26px 52px rgba(19, 34, 62, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-appview-popcard-kicker {
  color: var(--wc-brand-navy);
}

.wc-appview-popcard-head h2,
.wc-appview-notification-item strong,
.wc-appview-empty-card strong,
.wc-appview-support-grid strong,
.wc-appview-section-head h2,
.wc-appview-feature-card strong {
  color: var(--wc-brand-ink);
}

.wc-appview-feature-card strong {
  min-height: 2.5em;
}

.wc-appview-popcard-close,
.wc-appview-menu-link,
.wc-appview-support-grid article,
.wc-appview-notification-item,
.wc-appview-empty-card {
  border-color: var(--wc-brand-line);
  background: #f7f9fd;
}

.wc-appview-menu-link,
.wc-appview-popcard-copy,
.wc-appview-popcard-note,
.wc-appview-notification-item p,
.wc-appview-empty-card p,
.wc-appview-feature-card small {
  color: #617997;
}

.wc-appview-hero-media {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(209, 222, 241, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 30px rgba(14, 31, 59, 0.16);
}

.wc-appview-hero-copy {
  gap: 14px;
}

.wc-appview-hero-copy h1 {
  letter-spacing: -0.055em;
  text-shadow: 0 8px 20px rgba(14, 28, 53, 0.18);
}

.wc-appview-hero-note {
  max-width: 328px;
  color: rgba(241, 246, 255, 0.82);
}

.wc-appview-primary-cta,
.wc-appview-campaign-button {
  background: linear-gradient(135deg, #5f7698 0%, #2b446f 100%);
  box-shadow: 0 16px 30px rgba(35, 58, 101, 0.28);
}

.wc-appview-primary-cta:hover,
.wc-appview-campaign-button:hover,
.wc-appview-primary-cta:focus-visible,
.wc-appview-campaign-button:focus-visible {
  box-shadow: 0 18px 34px rgba(35, 58, 101, 0.34);
}

.wc-appview-features {
  gap: 10px;
}

.wc-appview-feature-card {
  border-color: rgba(35, 58, 101, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  box-shadow:
    0 14px 24px rgba(26, 42, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-appview-feature-icon {
  color: var(--wc-brand-navy);
}

.wc-appview-feature-card:hover,
.wc-appview-feature-card:focus-visible {
  border-color: rgba(47, 75, 121, 0.18);
  box-shadow:
    0 18px 30px rgba(26, 42, 73, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-appview-section-head::after {
  background: rgba(35, 58, 101, 0.12);
}

.wc-appview-campaign-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #4d688e 0%, #263f69 100%);
  box-shadow: 0 18px 34px rgba(28, 43, 74, 0.18);
}

.wc-appview-campaign-copy strong,
.wc-appview-campaign-big,
.wc-appview-campaign-text {
  color: #ffffff;
}

.wc-appview-tabbar {
  border-color: rgba(35, 58, 101, 0.08);
  background: linear-gradient(180deg, rgba(251, 252, 255, 0.98), rgba(240, 244, 250, 0.97));
  box-shadow:
    0 18px 36px rgba(22, 36, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-appview-tab {
  color: #5b7394;
}

.wc-appview-tab:hover,
.wc-appview-tab:focus-visible,
.wc-appview-tab.is-current {
  color: var(--wc-brand-ink);
}

.wc-appview-tab.is-current::before {
  background: linear-gradient(180deg, rgba(79, 102, 138, 0.16), rgba(79, 102, 138, 0.05));
  box-shadow:
    inset 0 0 0 1px rgba(35, 58, 101, 0.08),
    0 10px 18px rgba(35, 58, 101, 0.1);
}

@media (max-width: 420px) {
  .wc-appview-brand {
    gap: 10px;
  }

  .wc-appview-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .wc-appview-brand-copy strong {
    font-size: 17px;
  }

  .wc-appview-brand-copy small {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
}

body.wc-service-page-body {
  --wc-service-bg: #eef4fc;
  --wc-service-bg-soft: #f8fbff;
  --wc-service-ink: #15386f;
  --wc-service-ink-strong: #0e2e63;
  --wc-service-muted: #5f769a;
  --wc-service-line: rgba(22, 59, 115, 0.1);
  --wc-service-blue: #156ce1;
  --wc-service-blue-deep: #0c57bd;
  --wc-service-blue-soft: #e9f2ff;
  --wc-service-shadow: 0 16px 32px rgba(18, 52, 104, 0.12);
  background:
    radial-gradient(circle at top, rgba(62, 123, 226, 0.14), transparent 30%),
    linear-gradient(180deg, #eff4fb 0%, #e4ecf7 100%);
}

body.wc-service-page-body .wc-appview-device {
  height: min(920px, calc(100vh - 32px));
}

body.wc-service-page-body .wc-appview-screen {
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fe 54%, #edf3fa 100%);
  overflow: hidden;
}

body.wc-service-page-body .wc-appview-screen::before,
body.wc-service-page-body .wc-appview-screen::after {
  display: none;
}

body.wc-service-page-body .wc-appview-notch {
  display: none;
}

body.wc-service-page-body .wc-appview-popcard {
  z-index: 9;
}

.wc-service-mobile-screen {
  position: relative;
  color: var(--wc-service-ink);
}

.wc-service-mobile-popcards .wc-appview-popcard-backdrop {
  backdrop-filter: blur(8px);
  background: rgba(9, 22, 47, 0.26);
}

.wc-service-mobile-popcard {
  top: 78px;
  right: 14px;
  left: 14px;
  max-width: none;
  gap: 18px;
  padding: 22px 18px 18px;
  border-radius: 26px;
  border-color: rgba(17, 68, 137, 0.1);
  background:
    radial-gradient(circle at top right, rgba(44, 120, 225, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
  box-shadow:
    0 28px 48px rgba(15, 35, 72, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-service-mobile-popcard .wc-appview-popcard-head {
  gap: 14px;
}

.wc-service-mobile-popcard .wc-appview-popcard-head h2 {
  font-size: 19px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.wc-service-mobile-popcard .wc-appview-popcard-kicker {
  margin-bottom: 8px;
  color: #5f7ea7;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.wc-service-mobile-popcard .wc-appview-popcard-close {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: #f2f6fd;
  color: var(--wc-service-ink);
}

.wc-service-mobile-popcard .wc-appview-popcard-copy {
  color: var(--wc-service-muted);
  font-size: 13px;
  line-height: 1.7;
}

.wc-service-mobile-popcard .wc-appview-popcard-actions {
  grid-template-columns: 1fr;
  gap: 10px;
}

.wc-service-mobile-popcard .wc-primary-button,
.wc-service-mobile-popcard .wc-secondary-button {
  min-height: 54px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.wc-service-mobile-popcard .wc-primary-button {
  background: linear-gradient(180deg, #2f84ef 0%, #1464d4 100%);
  box-shadow: 0 14px 26px rgba(20, 100, 212, 0.22);
}

.wc-service-mobile-popcard .wc-secondary-button {
  background: #ffffff;
  border-color: rgba(21, 91, 183, 0.16);
  color: #1e56a7;
  box-shadow:
    0 10px 20px rgba(18, 52, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-service-mobile-topbar {
  position: sticky;
  top: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(18, 58, 115, 0.08);
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.96) 0%, rgba(246, 250, 255, 0.9) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(18, 52, 104, 0.05);
}

.wc-service-mobile-topbar h1 {
  margin: 0;
  color: var(--wc-service-ink-strong);
  font-family: var(--wc-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.03em;
}

.wc-service-mobile-navbutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(21, 57, 113, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 10px 18px rgba(18, 52, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--wc-service-ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-service-mobile-navbutton:hover,
.wc-service-mobile-navbutton:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(21, 57, 113, 0.18);
  box-shadow:
    0 14px 22px rgba(18, 52, 104, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-service-mobile-navbutton--primary {
  background: linear-gradient(180deg, #1972ea 0%, #095fcf 100%);
  color: #ffffff;
}

.wc-service-mobile-navicon {
  width: 22px;
  height: 22px;
}

.wc-service-mobile-navicon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-service-mobile-scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  gap: 18px;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 10px 18px calc(148px + env(safe-area-inset-bottom, 0px));
}

.wc-service-mobile-scroll::-webkit-scrollbar {
  display: none;
}

.wc-service-mobile-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 6px 4px 0;
  text-align: center;
}

.wc-service-mobile-eyebrow {
  color: #5576a6;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wc-service-mobile-hero h2 {
  margin: 0;
  max-width: 9.5ch;
  color: var(--wc-service-ink-strong);
  font-family: var(--wc-font-display);
  font-size: clamp(2.1rem, 9vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
  text-shadow: 0 12px 24px rgba(27, 78, 155, 0.06);
}

.wc-service-mobile-lead {
  margin: 0;
  color: var(--wc-service-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.wc-service-mobile-description {
  margin: 0;
  max-width: 29ch;
  color: var(--wc-service-muted);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: balance;
}

.wc-service-mobile-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

.wc-service-mobile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-service-mobile-button:hover,
.wc-service-mobile-button:focus-visible {
  transform: translateY(-1px);
}

.wc-service-mobile-button--primary {
  background: linear-gradient(180deg, var(--wc-service-blue) 0%, var(--wc-service-blue-deep) 100%);
  box-shadow: 0 14px 26px rgba(16, 77, 163, 0.26);
  color: #ffffff;
}

.wc-service-mobile-button--secondary {
  border: 1px solid rgba(17, 65, 130, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 12px 22px rgba(18, 52, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: var(--wc-service-ink);
}

.wc-service-mobile-button-arrow {
  font-size: 22px;
  line-height: 1;
}

.wc-service-mobile-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.wc-service-mobile-feature-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 116px;
  padding: 13px 8px 12px;
  border: 1px solid var(--wc-service-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 14px 24px rgba(18, 52, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-service-mobile-feature-card:hover,
.wc-service-mobile-feature-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(21, 108, 225, 0.16);
  box-shadow:
    0 18px 30px rgba(18, 52, 104, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-service-mobile-feature-icon,
.wc-service-mobile-mini-icon {
  width: 38px;
  height: 38px;
  color: var(--wc-service-blue);
}

.wc-service-mobile-feature-icon svg,
.wc-service-mobile-mini-icon svg,
.wc-service-mobile-check svg,
.wc-service-mobile-preview-tile-icon svg,
.wc-service-mobile-bottom-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-service-mobile-feature-card strong {
  color: var(--wc-service-ink-strong);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.wc-service-mobile-feature-card small {
  color: var(--wc-service-muted);
  font-size: 10px;
  line-height: 1.4;
  text-wrap: balance;
}

.wc-service-mobile-section {
  display: grid;
  gap: 14px;
}

.wc-service-mobile-section-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.wc-service-mobile-section-head span {
  height: 1px;
  background: rgba(18, 58, 115, 0.12);
}

.wc-service-mobile-section-head h3 {
  margin: 0;
  color: var(--wc-service-ink-strong);
  font-family: var(--wc-font-display);
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.wc-service-mobile-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wc-service-mobile-package-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 16px 12px;
  border: 1px solid var(--wc-service-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 14px 24px rgba(18, 52, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-service-mobile-package-card:hover,
.wc-service-mobile-package-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(21, 108, 225, 0.15);
  box-shadow:
    0 18px 32px rgba(18, 52, 104, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-service-mobile-package-card h4 {
  margin: 0;
  color: var(--wc-service-ink-strong);
  font-family: var(--wc-font-display);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.wc-service-mobile-package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-service-mobile-package-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--wc-service-muted);
  font-size: 12px;
  line-height: 1.45;
}

.wc-service-mobile-check,
.wc-service-mobile-preview-tile-icon {
  width: 18px;
  height: 18px;
  color: var(--wc-service-blue);
}

.wc-service-mobile-showcase {
  position: relative;
  margin-top: 2px;
}

.wc-service-mobile-showcase-surface {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 18px 0 0;
}

.wc-service-mobile-showcase-surface::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 50%;
  width: 128%;
  height: 238px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center bottom, rgba(28, 104, 226, 0.1), transparent 56%),
    linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
  border: 1px solid rgba(24, 79, 159, 0.06);
  transform: translateX(-50%);
}

.wc-service-mobile-showcase-surface::after {
  content: "";
  position: absolute;
  top: 138px;
  left: 50%;
  width: 184px;
  height: 80px;
  background-image: radial-gradient(rgba(21, 108, 225, 0.18) 1px, transparent 1px);
  background-size: 10px 10px;
  transform: translateX(-50%);
  opacity: 0.65;
}

.wc-service-mobile-showcase-ring {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 112, 228, 0.12) 0%, rgba(33, 112, 228, 0.04) 46%, transparent 72%);
  transform: translateX(-50%);
}

.wc-service-mobile-preview-phone {
  position: relative;
  z-index: 1;
  width: min(58%, 188px);
  min-width: 176px;
}

.wc-service-mobile-preview-shell {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #1d2430 0%, #080d17 100%);
  box-shadow:
    0 24px 34px rgba(16, 41, 82, 0.2),
    inset 0 0 0 2px rgba(148, 162, 191, 0.42),
    inset 0 0 0 6px rgba(4, 7, 14, 0.92);
}

.wc-service-mobile-preview-shell::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 78px;
  height: 18px;
  border-radius: 999px;
  background: #050a13;
  transform: translateX(-50%);
  z-index: 2;
}

.wc-service-mobile-preview-top {
  display: flex;
  gap: 5px;
  padding: 18px 12px 10px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, #f9fbff 0%, #f1f6fd 100%);
}

.wc-service-mobile-preview-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #adc4eb;
}

.wc-service-mobile-preview-top span:first-child {
  background: #f3a34f;
}

.wc-service-mobile-preview-top span:nth-child(2) {
  background: #2c78e1;
}

.wc-service-mobile-preview-content {
  display: grid;
  gap: 12px;
  padding: 0 12px 14px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
}

.wc-service-mobile-preview-banner {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding: 16px 14px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #1c6ee5 0%, #0e57bb 100%);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(17, 79, 168, 0.22);
}

.wc-service-mobile-preview-banner small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

.wc-service-mobile-preview-banner strong {
  font-family: var(--wc-font-display);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.wc-service-mobile-preview-banner p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  opacity: 0.84;
}

.wc-service-mobile-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.wc-service-mobile-preview-stats article {
  display: grid;
  gap: 5px;
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 10px 16px rgba(18, 52, 104, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-service-mobile-preview-stats strong {
  color: var(--wc-service-ink-strong);
  font-family: var(--wc-font-display);
  font-size: 12px;
  line-height: 1;
}

.wc-service-mobile-preview-stats span {
  color: var(--wc-service-muted);
  font-size: 8px;
  line-height: 1.4;
}

.wc-service-mobile-preview-tiles {
  display: grid;
  gap: 8px;
}

.wc-service-mobile-preview-tiles article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 11px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 10px 16px rgba(18, 52, 104, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-service-mobile-preview-tiles strong {
  display: block;
  color: var(--wc-service-ink);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
}

.wc-service-mobile-preview-tiles small {
  display: block;
  margin-top: 2px;
  color: var(--wc-service-muted);
  font-size: 8px;
  line-height: 1.4;
}

.wc-service-mobile-chip-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: -8px;
}

.wc-service-mobile-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(22, 59, 115, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 18px rgba(18, 52, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: var(--wc-service-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}

.wc-service-mobile-process-list {
  position: relative;
  display: grid;
}

.wc-service-mobile-process-list::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 18px;
  width: 2px;
  background: rgba(20, 71, 143, 0.16);
}

.wc-service-mobile-process-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}

.wc-service-mobile-process-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1f62c6 0%, #154a9a 100%);
  box-shadow: 0 10px 20px rgba(18, 73, 148, 0.22);
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 18px;
  font-weight: 700;
}

.wc-service-mobile-process-item div {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 58, 115, 0.1);
}

.wc-service-mobile-process-item:last-child div {
  border-bottom: 0;
  padding-bottom: 0;
}

.wc-service-mobile-process-item strong {
  color: var(--wc-service-ink-strong);
  font-family: var(--wc-font-display);
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.wc-service-mobile-process-item p {
  margin: 0;
  color: var(--wc-service-muted);
  font-size: 13px;
  line-height: 1.58;
}

.wc-service-mobile-bottom-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wc-service-mobile-mini-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 14px 8px 12px;
  border: 1px solid var(--wc-service-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 14px 24px rgba(18, 52, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-service-mobile-mini-card:hover,
.wc-service-mobile-mini-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(21, 108, 225, 0.15);
  box-shadow:
    0 18px 30px rgba(18, 52, 104, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-service-mobile-mini-card strong {
  color: var(--wc-service-ink-strong);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

.wc-service-mobile-mini-card small {
  color: var(--wc-service-muted);
  font-size: 10px;
  line-height: 1.45;
  text-wrap: balance;
}

.wc-service-mobile-bottom-bar {
  position: absolute;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  left: 14px;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(18, 58, 115, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.92), rgba(243, 248, 255, 0.98));
  backdrop-filter: blur(16px);
  box-shadow:
    0 20px 36px rgba(18, 52, 104, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-service-mobile-bottom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-service-mobile-bottom-button:hover,
.wc-service-mobile-bottom-button:focus-visible {
  transform: translateY(-1px);
}

.wc-service-mobile-bottom-button--secondary {
  border: 1px solid rgba(17, 65, 130, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 12px 22px rgba(18, 52, 104, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: var(--wc-service-ink);
}

.wc-service-mobile-bottom-button--primary {
  background: linear-gradient(180deg, var(--wc-service-blue) 0%, var(--wc-service-blue-deep) 100%);
  box-shadow: 0 14px 26px rgba(16, 77, 163, 0.28);
  color: #ffffff;
}

.wc-service-mobile-bottom-icon {
  width: 20px;
  height: 20px;
}

.wc-service-mobile-popcard {
  max-height: min(70vh, 520px);
}

.wc-service-mobile-support-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wc-service-mobile-support-meta article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(20, 62, 122, 0.08);
  border-radius: 18px;
  background: #f7faff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-service-mobile-support-meta span {
  color: var(--wc-service-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wc-service-mobile-support-meta strong {
  color: var(--wc-service-ink-strong);
  font-size: 14px;
  line-height: 1.45;
}

.wc-service-mobile-popcard-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5f9ff;
  color: var(--wc-service-muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 420px) {
  .wc-service-mobile-topbar {
    padding: 18px 14px 14px;
  }

  .wc-service-mobile-topbar h1 {
    font-size: 18px;
  }

  .wc-service-mobile-navbutton {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .wc-service-mobile-scroll {
    gap: 16px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .wc-service-mobile-hero h2 {
    font-size: 2.55rem;
  }

  .wc-service-mobile-button,
  .wc-service-mobile-bottom-button {
    min-height: 52px;
    font-size: 14px;
  }

  .wc-service-mobile-feature-card,
  .wc-service-mobile-package-card,
  .wc-service-mobile-mini-card {
    border-radius: 16px;
  }

  .wc-service-mobile-feature-card {
    min-height: 112px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .wc-service-mobile-popcard {
    top: 72px;
    right: 10px;
    left: 10px;
    padding: 20px 14px 16px;
    border-radius: 24px;
  }

  .wc-service-mobile-popcard .wc-appview-popcard-head h2 {
    font-size: 17px;
  }

  .wc-service-mobile-support-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wc-service-mobile-package-card {
    padding-left: 10px;
    padding-right: 10px;
  }

  .wc-service-mobile-package-card h4 {
    font-size: 13px;
  }

  .wc-service-mobile-package-card li,
  .wc-service-mobile-process-item p {
    font-size: 12px;
  }

  .wc-service-mobile-chip-row span {
    min-height: 34px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 10px;
  }

  .wc-service-mobile-bottom-bar {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    gap: 10px;
    padding: 10px;
  }
}

.wc-home-dock {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  z-index: 14;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(27, 63, 121, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(252, 253, 255, 0.96), rgba(241, 246, 252, 0.98));
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 36px rgba(20, 37, 69, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-home-dock::before {
  display: none;
}

.wc-home-dock .wc-appview-tab {
  min-height: 62px;
  gap: 5px;
  padding: 8px 4px 7px;
  border-radius: 18px;
  color: #506b92;
  transform: none;
}

.wc-home-dock .wc-appview-tab::before {
  inset: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.wc-home-dock .wc-appview-tab:hover,
.wc-home-dock .wc-appview-tab:focus-visible {
  color: #1a63cb;
  transform: translateY(-1px);
}

.wc-home-dock .wc-appview-tab.is-current {
  color: #155ec8;
}

.wc-home-dock .wc-appview-tab.is-current::before {
  background: linear-gradient(180deg, rgba(38, 116, 225, 0.12), rgba(38, 116, 225, 0.03));
  box-shadow:
    inset 0 0 0 1px rgba(19, 95, 207, 0.08),
    0 8px 16px rgba(19, 95, 207, 0.08);
}

.wc-home-dock .wc-appview-tab-icon {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 12px;
  background: transparent;
  color: inherit;
}

.wc-home-dock .wc-appview-tab.is-current .wc-appview-tab-icon {
  background: linear-gradient(180deg, #2a83ef 0%, #1464d4 100%);
  color: #ffffff;
  box-shadow: 0 10px 16px rgba(20, 100, 212, 0.2);
}

.wc-home-dock .wc-appview-tab > span:last-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.wc-appview-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-appview-tech-card {
  display: grid;
  justify-items: start;
  gap: 8px;
  min-width: 0;
  width: 100%;
  padding: 14px 12px;
  border: 1px solid rgba(35, 58, 101, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  box-shadow:
    0 14px 24px rgba(26, 42, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--wc-brand-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-appview-tech-card:hover,
.wc-appview-tech-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 75, 121, 0.18);
  box-shadow:
    0 18px 30px rgba(26, 42, 73, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-appview-tech-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(42, 131, 239, 0.12), rgba(20, 100, 212, 0.05));
  color: #1f6fd9;
}

.wc-appview-tech-card:nth-child(2) .wc-appview-tech-card-icon {
  color: #245fa8;
}

.wc-appview-tech-card:nth-child(3) .wc-appview-tech-card-icon {
  color: #2b78cf;
}

.wc-appview-tech-card:nth-child(4) .wc-appview-tech-card-icon {
  color: #ff8412;
}

.wc-appview-tech-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-appview-tech-card strong {
  display: block;
  color: var(--wc-brand-ink);
  font-family: var(--wc-font-display);
  font-size: 14px;
  line-height: 1.18;
  text-wrap: balance;
}

.wc-appview-tech-card small {
  display: block;
  color: #617997;
  font-size: 11px;
  line-height: 1.45;
  text-wrap: balance;
}

.wc-appview-tech-popcard {
  gap: 18px;
}

.wc-appview-tech-popcard-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-appview-tech-popcard-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4f8fd;
  color: #35547d;
  font-size: 11px;
  font-weight: 800;
}

.wc-appview-tech-popcard-list {
  display: grid;
  gap: 10px;
}

.wc-appview-tech-popcard-list article {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(35, 58, 101, 0.08);
  border-radius: 18px;
  background: #f8fbff;
}

.wc-appview-tech-popcard-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a83ef 0%, #ff8412 100%);
  flex: 0 0 auto;
}

.wc-appview-tech-popcard-list strong {
  color: var(--wc-brand-ink);
  font-size: 14px;
  line-height: 1.55;
}

body.wc-appview-body:not(.wc-service-page-body) .wc-appview-scroll-area {
  padding-bottom: 104px;
}

@media (max-width: 420px) {
  .wc-home-dock {
    right: 8px;
    bottom: 4px;
    left: 8px;
    gap: 4px;
    padding: 7px;
    border-radius: 24px;
  }

  .wc-home-dock .wc-appview-tab {
    min-height: 58px;
    padding: 7px 2px 6px;
    border-radius: 16px;
  }

  .wc-home-dock .wc-appview-tab::before {
    border-radius: 16px;
  }

  .wc-home-dock .wc-appview-tab-icon {
    width: 28px;
    height: 28px;
    padding: 5px;
    border-radius: 11px;
  }

  .wc-home-dock .wc-appview-tab > span:last-child {
    font-size: 9px;
  }

  .wc-appview-tech-grid {
    gap: 8px;
  }

  .wc-appview-tech-card {
    padding: 12px 10px;
    border-radius: 18px;
  }

  .wc-appview-tech-card strong {
    font-size: 13px;
  }

  .wc-appview-tech-card small {
    font-size: 10px;
  }

  body.wc-appview-body:not(.wc-service-page-body) .wc-appview-scroll-area {
    padding-bottom: 96px;
  }
}

.wc-appview-hero-bridge {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  margin: -10px 14px 0;
}

.wc-appview-marketplace-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.wc-appview-marketplace-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 66px;
  padding: 12px 10px;
  border: 1px solid rgba(27, 63, 121, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  box-shadow:
    0 14px 24px rgba(20, 37, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-appview-marketplace-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 22px;
  object-fit: contain;
  object-position: center;
}

.wc-appview-marketplace-logo--trendyol {
  height: 20px;
}

.wc-appview-marketplace-logo--n11 {
  height: 18px;
}

.wc-appview-marketplace-logo--hepsiburada {
  height: 24px;
}

.wc-appview-marketplace-logo--amazon {
  height: 18px;
}

.wc-appview-license-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(27, 63, 121, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(241, 246, 252, 0.97));
  box-shadow:
    0 20px 34px rgba(20, 37, 69, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-appview-license-copy {
  display: grid;
  gap: 6px;
}

.wc-appview-license-kicker {
  color: #5f7698;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wc-appview-license-copy h2 {
  margin: 0;
  color: #203a61;
  font-family: var(--wc-font-display);
  font-size: 23px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.wc-appview-license-copy p {
  margin: 0;
  color: #617997;
  font-size: 12px;
  line-height: 1.6;
}

.wc-appview-license-field {
  display: block;
}

.wc-appview-license-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(32, 58, 97, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  color: #203a61;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wc-appview-license-field input::placeholder {
  color: #89a0be;
  font-weight: 600;
}

.wc-appview-license-field input:focus {
  outline: none;
  border-color: rgba(43, 95, 168, 0.36);
  box-shadow:
    0 0 0 4px rgba(43, 95, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.wc-appview-license-actions {
  display: grid;
  gap: 10px;
}

.wc-appview-license-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #5f7698 0%, #2b446f 100%);
  box-shadow: 0 16px 28px rgba(35, 58, 101, 0.2);
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-appview-license-button:hover,
.wc-appview-license-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 32px rgba(35, 58, 101, 0.26);
}

.wc-appview-license-hint {
  color: #6a819e;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.wc-appview-hero-bridge + .wc-appview-features {
  margin-top: 16px;
}

@media (max-width: 420px) {
  .wc-appview-hero-bridge {
    margin-right: 12px;
    margin-left: 12px;
    gap: 12px;
  }

  .wc-appview-marketplace-badge {
    min-height: 62px;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .wc-appview-marketplace-logo {
    height: 18px;
  }

  .wc-appview-marketplace-logo--trendyol {
    height: 17px;
  }

  .wc-appview-marketplace-logo--n11 {
    height: 16px;
  }

  .wc-appview-marketplace-logo--hepsiburada {
    height: 20px;
  }

  .wc-appview-marketplace-logo--amazon {
    height: 16px;
  }

  .wc-appview-license-card {
    padding: 16px;
    border-radius: 24px;
  }

  .wc-appview-license-copy h2 {
    font-size: 21px;
  }

  .wc-appview-license-copy p {
    font-size: 11px;
  }

  .wc-appview-license-field input,
  .wc-appview-license-button {
    min-height: 52px;
  }

  .wc-appview-hero-bridge + .wc-appview-features {
    margin-top: 14px;
  }
}

body.wc-appview-body {
  --wc-mobile-safe-top-gap: max(24px, calc(env(safe-area-inset-top) + 12px));
}

body.wc-appview-body .wc-appview-header {
  padding-top: var(--wc-mobile-safe-top-gap);
}

body.wc-service-page-body .wc-service-mobile-topbar {
  padding-top: var(--wc-mobile-safe-top-gap);
}

body.wc-service-page-body .wc-service-mobile-scroll {
  scroll-padding-top: calc(var(--wc-mobile-safe-top-gap) + 24px);
}

@media (max-width: 420px) {
  body.wc-appview-body {
    --wc-mobile-safe-top-gap: max(22px, calc(env(safe-area-inset-top) + 10px));
  }
}

.wc-home-dock {
  right: 12px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 12px;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(31, 58, 101, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 247, 252, 0.94));
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow:
    0 24px 40px rgba(17, 31, 57, 0.18),
    0 8px 18px rgba(32, 58, 97, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-home-dock::before {
  display: block;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 44%),
    radial-gradient(70% 120% at 50% 0%, rgba(138, 174, 223, 0.18) 0%, rgba(138, 174, 223, 0) 70%);
  opacity: 0.95;
}

.wc-home-dock .wc-appview-tab {
  min-height: 64px;
  gap: 6px;
  padding: 9px 4px 8px;
  border-radius: 20px;
  color: #607898;
  overflow: hidden;
  transition: transform 0.22s ease, color 0.22s ease;
}

.wc-home-dock .wc-appview-tab::before {
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.wc-home-dock .wc-appview-tab:hover,
.wc-home-dock .wc-appview-tab:focus-visible {
  color: #1f5fbe;
  transform: translateY(-1px);
}

.wc-home-dock .wc-appview-tab:hover::before,
.wc-home-dock .wc-appview-tab:focus-visible::before {
  opacity: 1;
}

.wc-home-dock .wc-appview-tab.is-current {
  color: #184f9d;
  transform: translateY(-1px);
}

.wc-home-dock .wc-appview-tab.is-current::before {
  opacity: 1;
  background: linear-gradient(180deg, rgba(62, 123, 210, 0.17), rgba(62, 123, 210, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(26, 87, 176, 0.1),
    0 12px 22px rgba(26, 87, 176, 0.1);
}

.wc-home-dock .wc-appview-tab-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(83, 112, 154, 0.1), rgba(83, 112, 154, 0.04));
  color: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 6px 12px rgba(42, 68, 111, 0.06);
}

.wc-home-dock .wc-appview-tab.is-current .wc-appview-tab-icon {
  background: linear-gradient(180deg, #3a82e2 0%, #1d66cf 100%);
  color: #ffffff;
  box-shadow:
    0 14px 20px rgba(29, 102, 207, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.wc-home-dock .wc-appview-tab > span:last-child {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

body.wc-appview-body:not(.wc-service-page-body) .wc-appview-scroll-area {
  padding-bottom: 118px;
}

@media (max-width: 420px) {
  .wc-home-dock {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    gap: 5px;
    padding: 8px;
    border-radius: 26px;
  }

  .wc-home-dock .wc-appview-tab {
    min-height: 60px;
    padding: 8px 2px 7px;
    border-radius: 18px;
  }

  .wc-home-dock .wc-appview-tab::before {
    border-radius: 18px;
  }

  .wc-home-dock .wc-appview-tab-icon {
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 12px;
  }

  .wc-home-dock .wc-appview-tab > span:last-child {
    font-size: 9px;
  }

  body.wc-appview-body:not(.wc-service-page-body) .wc-appview-scroll-area {
    padding-bottom: 108px;
  }
}

body.wc-licenseapp-body {
  --wc-license-safe-top: max(24px, calc(env(safe-area-inset-top) + 12px));
  --wc-license-safe-bottom: calc(16px + env(safe-area-inset-bottom));
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(96, 141, 214, 0.28), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 180, 92, 0.2), transparent 20%),
    linear-gradient(180deg, #e8eef7 0%, #dce5f1 100%);
  color: #18345d;
}

.wc-licenseapp-shell {
  min-height: 100vh;
  padding: 28px 18px;
}

.wc-licenseapp-stage {
  display: flex;
  justify-content: center;
}

.wc-licenseapp-device {
  position: relative;
  width: min(100%, 430px);
  min-height: min(920px, calc(100vh - 56px));
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1f304d 0%, #0b1220 100%);
  box-shadow:
    0 34px 80px rgba(12, 22, 41, 0.28),
    inset 0 0 0 2px rgba(122, 139, 174, 0.58),
    inset 0 0 0 7px rgba(5, 10, 20, 0.92);
}

.wc-licenseapp-power-button,
.wc-licenseapp-volume-buttons::before,
.wc-licenseapp-volume-buttons::after {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, #52627f 0%, #151d2a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.wc-licenseapp-power-button {
  top: 240px;
  right: -4px;
  width: 4px;
  height: 140px;
}

.wc-licenseapp-volume-buttons::before,
.wc-licenseapp-volume-buttons::after {
  content: "";
  left: -4px;
  width: 4px;
}

.wc-licenseapp-volume-buttons::before {
  top: 196px;
  height: 66px;
}

.wc-licenseapp-volume-buttons::after {
  top: 286px;
  height: 110px;
}

.wc-licenseapp-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(896px, calc(100vh - 80px));
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 173, 248, 0.18), transparent 28%),
    linear-gradient(180deg, #fafdff 0%, #f3f7fd 44%, #edf3fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wc-licenseapp-screen::before {
  display: none;
  content: none;
}

.wc-licenseapp-topbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: calc(var(--wc-license-safe-top) + 2px) 18px 18px;
}

.wc-licenseapp-topcopy {
  min-width: 0;
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
}

.wc-licenseapp-topcopy small {
  color: #758baa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-licenseapp-topcopy strong {
  color: #18345d;
  font-family: var(--wc-font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wc-licenseapp-topactions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wc-licenseapp-topbutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: #35527d;
  text-decoration: none;
  box-shadow:
    0 14px 28px rgba(23, 44, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-licenseapp-topbutton--primary {
  background: linear-gradient(180deg, #3f82e2 0%, #1e67cf 100%);
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(30, 103, 207, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.wc-licenseapp-topicon,
.wc-licenseapp-topicon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.wc-licenseapp-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 6px 16px calc(126px + env(safe-area-inset-bottom));
  scrollbar-width: none;
}

.wc-licenseapp-scroll::-webkit-scrollbar {
  display: none;
}

.wc-licenseapp-hero {
  display: grid;
  gap: 14px;
}

.wc-licenseapp-hero-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(155deg, #31507f 0%, #243b67 56%, #1a2f52 100%);
  color: #ffffff;
  box-shadow: 0 24px 42px rgba(18, 35, 63, 0.22);
}

.wc-licenseapp-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wc-licenseapp-hero-card h1 {
  margin: 0;
  font-family: var(--wc-font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.wc-licenseapp-hero-card p {
  margin: 0;
  max-width: 320px;
  color: rgba(240, 245, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.wc-licenseapp-hero-band {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-licenseapp-hero-band span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #edf5ff;
  font-size: 12px;
  font-weight: 700;
}

.wc-licenseapp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wc-licenseapp-statcard {
  display: grid;
  gap: 4px;
  justify-items: start;
  min-width: 0;
  padding: 14px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wc-licenseapp-staticon {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.wc-licenseapp-staticon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-licenseapp-statcard strong {
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 28px;
  line-height: 1;
}

.wc-licenseapp-statcard span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.wc-licenseapp-statcard small {
  color: rgba(230, 238, 252, 0.76);
  font-size: 10px;
  line-height: 1.4;
}

.wc-licenseapp-infogrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wc-licenseapp-infocard {
  display: grid;
  gap: 9px;
  padding: 16px 14px;
  border: 1px solid rgba(31, 58, 101, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
  box-shadow:
    0 16px 30px rgba(20, 37, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-licenseapp-infocard-icon {
  width: 26px;
  height: 26px;
  color: #2d69c6;
}

.wc-licenseapp-infocard-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-licenseapp-infocard strong {
  color: #18345d;
  font-size: 13px;
  line-height: 1.2;
  text-wrap: balance;
}

.wc-licenseapp-infocard p {
  margin: 0;
  color: #69809e;
  font-size: 11px;
  line-height: 1.55;
}

.wc-licenseapp-sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 0 4px;
}

.wc-licenseapp-sectionhead span {
  color: #6c82a0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-licenseapp-sectionhead h2 {
  margin: 6px 0 0;
  color: #18345d;
  font-family: var(--wc-font-display);
  font-size: 28px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.wc-licenseapp-sectionhead p {
  margin: 0;
  color: #7288a6;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.wc-licenseapp-cardlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.wc-licenseapp-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 18px 16px;
  border: 1px solid rgba(30, 60, 104, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(89, 143, 224, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96));
  box-shadow:
    0 18px 34px rgba(21, 37, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-licenseapp-cardhead {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.wc-licenseapp-cardicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(58, 130, 226, 0.14), rgba(58, 130, 226, 0.05));
  color: #2a6fce;
}

.wc-licenseapp-cardicon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.wc-licenseapp-cardcopy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.wc-licenseapp-cardcopy small {
  color: #8094b0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-licenseapp-cardcopy h3 {
  margin: 0;
  color: #18345d;
  font-size: 19px;
  line-height: 1.08;
  text-wrap: balance;
}

.wc-licenseapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.wc-licenseapp-pill--success {
  background: rgba(24, 182, 116, 0.12);
  color: #147f53;
}

.wc-licenseapp-pill--warning {
  background: rgba(255, 167, 38, 0.16);
  color: #a86300;
}

.wc-licenseapp-pill--primary {
  background: rgba(58, 130, 226, 0.14);
  color: #1d64cb;
}

.wc-licenseapp-headline {
  margin: 0;
  color: #1d4d93;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.wc-licenseapp-cardmeta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.wc-licenseapp-cardmeta article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f7fb 0%, #edf3fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-licenseapp-cardmeta small {
  color: #7d90ac;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-licenseapp-cardmeta strong {
  color: #18345d;
  font-size: 13px;
  line-height: 1.3;
}

.wc-licenseapp-scope {
  margin: 0;
  color: #6d829f;
  font-size: 12px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.wc-licenseapp-progressgrid {
  display: grid;
  gap: 8px;
}

.wc-licenseapp-progressitem {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(40, 84, 146, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(242, 247, 253, 0.92), rgba(235, 242, 251, 0.88));
}

.wc-licenseapp-progressdot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3c84e4 0%, #1e67cf 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(30, 103, 207, 0.2);
}

.wc-licenseapp-progressitem p {
  margin: 0;
  color: #254a80;
  font-size: 12px;
  line-height: 1.45;
}

.wc-licenseapp-cardactions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}

.wc-licenseapp-actionlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: #eef4fb;
  color: #2f4c79;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.wc-licenseapp-actionlink--primary {
  background: linear-gradient(180deg, #3f82e2 0%, #1d66cf 100%);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(29, 102, 207, 0.18);
}

.wc-licenseapp-supportcard {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(155deg, #2e4a75 0%, #1c3053 100%);
  color: #ffffff;
  box-shadow: 0 24px 42px rgba(18, 35, 63, 0.18);
}

.wc-licenseapp-supportcopy {
  display: grid;
  gap: 8px;
}

.wc-licenseapp-supportcopy span {
  color: rgba(225, 236, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wc-licenseapp-supportcopy h2 {
  margin: 0;
  font-family: var(--wc-font-display);
  font-size: 28px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.wc-licenseapp-supportcopy p {
  margin: 0;
  color: rgba(234, 240, 249, 0.8);
  font-size: 13px;
  line-height: 1.65;
}

.wc-licenseapp-supportmeta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-licenseapp-supportmeta article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.wc-licenseapp-supportmeta small {
  color: rgba(225, 236, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-licenseapp-supportmeta strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
}

.wc-licenseapp-supportactions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-licenseapp-supportbutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, #4c93f0 0%, #2a73dc 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(30, 103, 207, 0.18);
}

.wc-licenseapp-supportbutton--light {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.wc-licenseapp-dock {
  position: absolute;
  right: 14px;
  bottom: var(--wc-license-safe-bottom);
  left: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(31, 58, 101, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.94));
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    0 24px 42px rgba(17, 31, 57, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-licenseapp-docklink {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 64px;
  padding: 9px 4px 8px;
  border-radius: 18px;
  color: #607898;
  text-decoration: none;
}

.wc-licenseapp-dockicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(83, 112, 154, 0.1), rgba(83, 112, 154, 0.04));
  color: inherit;
}

.wc-licenseapp-dockicon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wc-licenseapp-docklink span:last-child {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.wc-licenseapp-docklink.is-current {
  color: #1a58af;
  background: linear-gradient(180deg, rgba(58, 130, 226, 0.14), rgba(58, 130, 226, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(26, 88, 175, 0.08),
    0 12px 22px rgba(26, 88, 175, 0.08);
}

.wc-licenseapp-docklink.is-current .wc-licenseapp-dockicon {
  background: linear-gradient(180deg, #3f82e2 0%, #1d66cf 100%);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(29, 102, 207, 0.18);
}

@media (max-width: 860px) {
  .wc-licenseapp-shell {
    padding: 0;
  }

  .wc-licenseapp-device {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .wc-licenseapp-power-button,
  .wc-licenseapp-volume-buttons {
    display: none;
  }

  .wc-licenseapp-screen {
    min-height: 100vh;
    border-radius: 0;
  }
}

@media (max-width: 520px) {
  .wc-licenseapp-scroll {
    padding-right: 14px;
    padding-left: 14px;
  }

  .wc-licenseapp-hero-card,
  .wc-licenseapp-card,
  .wc-licenseapp-supportcard {
    border-radius: 26px;
  }

  .wc-licenseapp-topbar {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    padding-right: 14px;
    padding-left: 14px;
  }

  .wc-licenseapp-topcopy strong {
    font-size: 22px;
  }

  .wc-licenseapp-cardlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-licenseapp-stats,
  .wc-licenseapp-infogrid,
  .wc-licenseapp-supportmeta,
  .wc-licenseapp-supportactions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-licenseapp-infogrid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  body.wc-licenseapp-body {
    --wc-license-safe-top: max(22px, calc(env(safe-area-inset-top) + 10px));
  }

  .wc-licenseapp-topbar {
    gap: 10px;
    padding-bottom: 16px;
  }

  .wc-licenseapp-topcopy small {
    font-size: 9px;
  }

  .wc-licenseapp-topcopy strong {
    font-size: 20px;
  }

  .wc-licenseapp-topbutton {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .wc-licenseapp-scroll {
    padding: 4px 12px calc(118px + env(safe-area-inset-bottom));
  }

  .wc-licenseapp-hero-card {
    padding: 18px;
  }

  .wc-licenseapp-hero-card h1,
  .wc-licenseapp-supportcopy h2,
  .wc-licenseapp-sectionhead h2 {
    font-size: 26px;
  }

  .wc-licenseapp-cardlist {
    grid-template-columns: 1fr;
  }

  .wc-licenseapp-stats,
  .wc-licenseapp-infogrid,
  .wc-licenseapp-supportmeta,
  .wc-licenseapp-supportactions {
    grid-template-columns: 1fr;
  }

  .wc-licenseapp-cardhead {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .wc-licenseapp-cardmeta {
    grid-template-columns: 1fr;
  }

  .wc-licenseapp-dock {
    right: 10px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 10px;
    gap: 4px;
    padding: 8px;
    border-radius: 26px;
  }

  .wc-licenseapp-docklink {
    min-height: 58px;
    padding: 8px 2px 7px;
    border-radius: 16px;
  }

  .wc-licenseapp-dockicon {
    width: 28px;
    height: 28px;
    border-radius: 11px;
  }

  .wc-licenseapp-docklink span:last-child {
    font-size: 9px;
  }
}

body.wc-supportapp-body {
  --wc-support-safe-top: max(24px, calc(env(safe-area-inset-top) + 12px));
  --wc-support-safe-bottom: calc(16px + env(safe-area-inset-bottom));
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(114, 159, 229, 0.28), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 179, 93, 0.16), transparent 20%),
    linear-gradient(180deg, #eaf0f8 0%, #dbe4f1 100%);
  color: #18345d;
}

.wc-supportapp-shell {
  min-height: 100vh;
  padding: 28px 18px;
}

.wc-supportapp-stage {
  display: flex;
  justify-content: center;
}

.wc-supportapp-device {
  position: relative;
  width: min(100%, 430px);
  min-height: min(920px, calc(100vh - 56px));
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1f304d 0%, #0b1220 100%);
  box-shadow:
    0 34px 80px rgba(12, 22, 41, 0.28),
    inset 0 0 0 2px rgba(122, 139, 174, 0.58),
    inset 0 0 0 7px rgba(5, 10, 20, 0.92);
}

.wc-supportapp-power-button,
.wc-supportapp-volume-buttons::before,
.wc-supportapp-volume-buttons::after {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, #52627f 0%, #151d2a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.wc-supportapp-power-button {
  top: 240px;
  right: -4px;
  width: 4px;
  height: 140px;
}

.wc-supportapp-volume-buttons::before,
.wc-supportapp-volume-buttons::after {
  content: "";
  left: -4px;
  width: 4px;
}

.wc-supportapp-volume-buttons::before {
  top: 196px;
  height: 66px;
}

.wc-supportapp-volume-buttons::after {
  top: 286px;
  height: 110px;
}

.wc-supportapp-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(896px, calc(100vh - 80px));
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 173, 248, 0.15), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fd 48%, #edf3fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wc-supportapp-topbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 12px;
  padding: calc(var(--wc-support-safe-top) + 2px) 18px 18px;
}

.wc-supportapp-topcopy {
  min-width: 0;
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
}

.wc-supportapp-topcopy small {
  color: #758baa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-supportapp-topcopy strong {
  color: #18345d;
  font-family: var(--wc-font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wc-supportapp-topbutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: #35527d;
  text-decoration: none;
  box-shadow:
    0 14px 28px rgba(23, 44, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-supportapp-topbutton--primary {
  background: linear-gradient(180deg, #3f82e2 0%, #1e67cf 100%);
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(30, 103, 207, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.wc-supportapp-topicon,
.wc-supportapp-topicon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.wc-supportapp-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 6px 16px calc(126px + env(safe-area-inset-bottom));
  scrollbar-width: none;
}

.wc-supportapp-scroll::-webkit-scrollbar {
  display: none;
}

.wc-supportapp-flash {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 16px 30px rgba(20, 37, 69, 0.08);
}

.wc-supportapp-flash strong {
  font-size: 14px;
}

.wc-supportapp-flash p {
  margin: 0;
}

.wc-supportapp-flash--success {
  background: linear-gradient(180deg, rgba(231, 255, 244, 0.98), rgba(216, 247, 231, 0.96));
  color: #176a49;
}

.wc-supportapp-flash--error {
  background: linear-gradient(180deg, rgba(255, 238, 239, 0.98), rgba(250, 223, 226, 0.96));
  color: #943042;
}

.wc-supportapp-hero {
  display: grid;
  gap: 14px;
}

.wc-supportapp-hero-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(155deg, #355380 0%, #243c68 54%, #192e51 100%);
  color: #ffffff;
  box-shadow: 0 24px 42px rgba(18, 35, 63, 0.22);
}

.wc-supportapp-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wc-supportapp-hero-card h1 {
  margin: 0;
  font-family: var(--wc-font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.wc-supportapp-hero-card p {
  margin: 0;
  max-width: 32ch;
  color: rgba(240, 245, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.wc-supportapp-band {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-supportapp-band span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #edf5ff;
  font-size: 12px;
  font-weight: 700;
}

.wc-supportapp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wc-supportapp-stat {
  display: grid;
  gap: 5px;
  justify-items: center;
  align-content: center;
  min-width: 0;
  min-height: 96px;
  padding: 12px 8px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 24px rgba(9, 22, 47, 0.08);
  text-align: center;
}

.wc-supportapp-staticon {
  width: 22px;
  height: 22px;
  color: #ffffff;
  opacity: 0.92;
}

.wc-supportapp-staticon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-supportapp-stat strong {
  color: #ffffff;
  font-family: var(--wc-font-display);
  font-size: 24px;
  line-height: 1;
}

.wc-supportapp-stat small {
  color: rgba(230, 238, 252, 0.82);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.wc-supportapp-storyrow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86px;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  margin: 0 -2px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.wc-supportapp-storyrow::-webkit-scrollbar {
  display: none;
}

.wc-supportapp-story {
  display: grid;
  justify-items: center;
  gap: 8px;
  align-content: start;
  min-width: 0;
  min-height: 102px;
  padding: 12px 8px 12px;
  border: 1px solid rgba(31, 58, 101, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
  box-shadow:
    0 16px 30px rgba(20, 37, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  text-decoration: none;
  scroll-snap-align: start;
}

.wc-supportapp-story.is-active {
  border-color: rgba(31, 101, 204, 0.16);
  background: linear-gradient(180deg, rgba(236, 245, 255, 0.98), rgba(230, 240, 252, 0.96));
}

.wc-supportapp-storyicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4d8fee 0%, #1f66ce 100%);
  color: #ffffff;
  box-shadow: 0 14px 22px rgba(31, 102, 206, 0.18);
}

.wc-supportapp-storyicon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.wc-supportapp-story strong {
  color: #18345d;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
}

.wc-supportapp-sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 0 4px;
}

.wc-supportapp-sectionhead span {
  color: #6c82a0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-supportapp-sectionhead h2 {
  margin: 6px 0 0;
  color: #18345d;
  font-family: var(--wc-font-display);
  font-size: 28px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.wc-supportapp-sectionhead p {
  margin: 0;
  color: #7288a6;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.wc-supportapp-compose {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 20px;
  border: 1px solid rgba(23, 60, 113, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(89, 143, 224, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 253, 0.97));
  box-shadow:
    0 22px 38px rgba(21, 37, 67, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-supportapp-composehead {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.wc-supportapp-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: linear-gradient(180deg, #3f82e2 0%, #1d66cf 100%);
  color: #ffffff;
  box-shadow:
    0 18px 28px rgba(29, 102, 207, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.wc-supportapp-avatar svg {
  width: 26px;
  height: 26px;
  display: block;
}

.wc-supportapp-composecopy {
  display: grid;
  gap: 6px;
}

.wc-supportapp-composebadge {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(49, 110, 206, 0.1);
  color: #215fac;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-supportapp-composecopy strong {
  color: #18345d;
  font-family: var(--wc-font-display);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.wc-supportapp-composecopy p {
  margin: 0;
  color: #617997;
  font-size: 13px;
  line-height: 1.65;
}

.wc-supportapp-composechips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-supportapp-composechips span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4fb;
  color: #4e6991;
  font-size: 11px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-supportapp-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-supportapp-meta article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5f8fc 0%, #edf3fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 18px rgba(26, 53, 96, 0.04);
}

.wc-supportapp-meta article > div {
  display: grid;
  gap: 3px;
}

.wc-supportapp-metaicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(180deg, #4d8fee 0%, #1f66ce 100%);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(31, 102, 206, 0.18);
}

.wc-supportapp-metaicon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wc-supportapp-meta small,
.wc-supportapp-field span {
  color: #7d90ac;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-supportapp-meta strong {
  color: #18345d;
  font-size: 13px;
  line-height: 1.35;
}

.wc-supportapp-fieldgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-supportapp-field {
  display: grid;
  gap: 9px;
}

.wc-supportapp-field input,
.wc-supportapp-field select,
.wc-supportapp-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(31, 58, 101, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(245, 249, 254, 0.96));
  color: #18345d;
  font: inherit;
  padding: 15px 16px;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 18px rgba(21, 37, 67, 0.04);
}

.wc-supportapp-field textarea {
  resize: vertical;
  min-height: 140px;
}

.wc-supportapp-field input:focus,
.wc-supportapp-field select:focus,
.wc-supportapp-field textarea:focus {
  outline: none;
  border-color: rgba(31, 101, 204, 0.36);
  box-shadow:
    0 0 0 4px rgba(49, 110, 206, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-supportapp-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.wc-supportapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-supportapp-button:hover,
.wc-supportapp-button:focus-visible {
  transform: translateY(-1px);
}

.wc-supportapp-button--primary {
  background: linear-gradient(180deg, #3f82e2 0%, #1d66cf 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(29, 102, 207, 0.22);
}

.wc-supportapp-button--secondary {
  border: 1px solid rgba(31, 101, 204, 0.12);
  background: linear-gradient(180deg, #f9fbfe 0%, #eff4fb 100%);
  color: #2f4c79;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 20px rgba(21, 37, 67, 0.05);
}

.wc-supportapp-ticketlist {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.wc-supportapp-ticket,
.wc-supportapp-empty {
  display: grid;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid rgba(30, 60, 104, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(89, 143, 224, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96));
  box-shadow:
    0 18px 34px rgba(21, 37, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-supportapp-ticket--success {
  border-color: rgba(24, 182, 116, 0.14);
}

.wc-supportapp-ticket--warning {
  border-color: rgba(255, 167, 38, 0.18);
}

.wc-supportapp-tickethead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.wc-supportapp-ticketid {
  display: grid;
  gap: 4px;
}

.wc-supportapp-ticketid small {
  color: #8094b0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-supportapp-ticketid h3 {
  margin: 0;
  color: #18345d;
  font-size: 18px;
  line-height: 1.12;
  text-wrap: balance;
}

.wc-supportapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.wc-supportapp-pill--success {
  background: rgba(24, 182, 116, 0.12);
  color: #147f53;
}

.wc-supportapp-pill--warning {
  background: rgba(255, 167, 38, 0.16);
  color: #a86300;
}

.wc-supportapp-pill--primary {
  background: rgba(58, 130, 226, 0.14);
  color: #1d64cb;
}

.wc-supportapp-pill--danger {
  background: rgba(225, 71, 87, 0.14);
  color: #b02f45;
}

.wc-supportapp-ticketcopy,
.wc-supportapp-empty p {
  margin: 0;
  color: #6d829f;
  font-size: 13px;
  line-height: 1.65;
}

.wc-supportapp-ticketmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-supportapp-ticketmeta span,
.wc-supportapp-chiplink {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 12px;
  background: #f0f5fb;
  color: #5f7696;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.wc-supportapp-response {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(235, 245, 255, 0.96), rgba(227, 239, 253, 0.94));
}

.wc-supportapp-response small {
  color: #5174a3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-supportapp-response p,
.wc-supportapp-response span {
  margin: 0;
  color: #264b80;
  font-size: 13px;
  line-height: 1.6;
}

.wc-supportapp-ticketactions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-supportapp-chiplink--primary {
  background: linear-gradient(180deg, #3f82e2 0%, #1d66cf 100%);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(29, 102, 207, 0.16);
}

.wc-supportapp-empty {
  justify-items: center;
  text-align: center;
  padding-top: 26px;
  padding-bottom: 26px;
}

.wc-supportapp-emptyicon {
  width: 42px;
  height: 42px;
  color: #2d69c6;
}

.wc-supportapp-emptyicon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-supportapp-empty strong {
  color: #18345d;
  font-size: 18px;
  line-height: 1.2;
}

.wc-supportapp-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.wc-supportapp-contact article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 14px 28px rgba(20, 37, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-supportapp-contact small {
  color: #7d90ac;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-supportapp-contact strong {
  color: #18345d;
  font-size: 13px;
  line-height: 1.4;
}

.wc-supportapp-dock {
  position: absolute;
  right: 14px;
  bottom: var(--wc-support-safe-bottom);
  left: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(31, 58, 101, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.94));
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    0 24px 42px rgba(17, 31, 57, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-supportapp-docklink {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 64px;
  padding: 9px 4px 8px;
  border-radius: 18px;
  color: #607898;
  text-decoration: none;
}

.wc-supportapp-dockicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(83, 112, 154, 0.1), rgba(83, 112, 154, 0.04));
  color: inherit;
}

.wc-supportapp-dockicon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wc-supportapp-docklink span:last-child {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.wc-supportapp-docklink.is-current {
  color: #1a58af;
  background: linear-gradient(180deg, rgba(58, 130, 226, 0.14), rgba(58, 130, 226, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(26, 88, 175, 0.08),
    0 12px 22px rgba(26, 88, 175, 0.08);
}

.wc-supportapp-docklink.is-current .wc-supportapp-dockicon {
  background: linear-gradient(180deg, #3f82e2 0%, #1d66cf 100%);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(29, 102, 207, 0.18);
}

@media (max-width: 860px) {
  .wc-supportapp-shell {
    padding: 0;
  }

  .wc-supportapp-device {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .wc-supportapp-power-button,
  .wc-supportapp-volume-buttons {
    display: none;
  }

  .wc-supportapp-screen {
    min-height: 100vh;
    border-radius: 0;
  }
}

@media (max-width: 520px) {
  .wc-supportapp-scroll {
    padding-right: 14px;
    padding-left: 14px;
  }

  .wc-supportapp-hero-card,
  .wc-supportapp-compose,
  .wc-supportapp-ticket,
  .wc-supportapp-empty {
    border-radius: 26px;
  }

  .wc-supportapp-topbar {
    padding-right: 14px;
    padding-left: 14px;
  }

  .wc-supportapp-topcopy strong {
    font-size: 22px;
  }

  .wc-supportapp-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .wc-supportapp-stat {
    min-height: 88px;
    padding: 10px 6px 9px;
  }

  .wc-supportapp-compose {
    padding: 18px;
  }

  .wc-supportapp-stat strong {
    font-size: 22px;
  }

  .wc-supportapp-meta,
  .wc-supportapp-fieldgrid,
  .wc-supportapp-actions,
  .wc-supportapp-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-supportapp-storyrow {
    grid-auto-columns: 82px;
  }
}

@media (max-width: 420px) {
  body.wc-supportapp-body {
    --wc-support-safe-top: max(22px, calc(env(safe-area-inset-top) + 10px));
  }

  .wc-supportapp-topbar {
    gap: 10px;
    padding-bottom: 16px;
  }

  .wc-supportapp-topcopy small {
    font-size: 9px;
  }

  .wc-supportapp-topcopy strong {
    font-size: 20px;
  }

  .wc-supportapp-topbutton {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .wc-supportapp-scroll {
    padding: 4px 12px calc(118px + env(safe-area-inset-bottom));
  }

  .wc-supportapp-hero-card h1,
  .wc-supportapp-sectionhead h2 {
    font-size: 26px;
  }

  .wc-supportapp-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .wc-supportapp-stat {
    min-height: 82px;
    padding: 9px 4px 8px;
    border-radius: 16px;
  }

  .wc-supportapp-staticon {
    width: 20px;
    height: 20px;
  }

  .wc-supportapp-stat strong {
    font-size: 20px;
  }

  .wc-supportapp-stat small {
    font-size: 9px;
  }

  .wc-supportapp-compose {
    padding: 16px;
    gap: 14px;
  }

  .wc-supportapp-composehead {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px;
  }

  .wc-supportapp-avatar {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }

  .wc-supportapp-composecopy strong {
    font-size: 20px;
  }

  .wc-supportapp-composechips {
    gap: 6px;
  }

  .wc-supportapp-composechips span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .wc-supportapp-meta,
  .wc-supportapp-fieldgrid,
  .wc-supportapp-actions,
  .wc-supportapp-contact {
    grid-template-columns: 1fr;
  }

  .wc-supportapp-storyrow {
    grid-auto-columns: 78px;
    gap: 8px;
    padding-bottom: 4px;
  }

  .wc-supportapp-story {
    min-height: 94px;
    padding: 10px 6px;
    border-radius: 20px;
  }

  .wc-supportapp-storyicon {
    width: 42px;
    height: 42px;
  }

  .wc-supportapp-story strong {
    font-size: 9px;
  }

  .wc-supportapp-tickethead {
    grid-template-columns: 1fr;
  }

  .wc-supportapp-dock {
    right: 10px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 10px;
    gap: 4px;
    padding: 8px;
    border-radius: 26px;
  }

  .wc-supportapp-docklink {
    min-height: 58px;
    padding: 8px 2px 7px;
    border-radius: 16px;
  }

  .wc-supportapp-dockicon {
    width: 28px;
    height: 28px;
    border-radius: 11px;
  }

  .wc-supportapp-docklink span:last-child {
    font-size: 9px;
  }
}

/* Final app polish layer */
:root {
  --wc-polish-ink: #0d2b55;
  --wc-polish-text: #173763;
  --wc-polish-muted: #7185a4;
  --wc-polish-blue: #0b6fe8;
  --wc-polish-blue-2: #004fbf;
  --wc-polish-sky: #dff0ff;
  --wc-polish-line: rgba(41, 76, 121, 0.12);
  --wc-polish-card: rgba(255, 255, 255, 0.92);
  --wc-polish-soft: #eef5ff;
  --wc-polish-orange: #ff8617;
  --wc-polish-shadow: 0 22px 48px rgba(20, 45, 84, 0.16);
  --wc-polish-soft-shadow: 0 12px 28px rgba(26, 67, 126, 0.1);
  --wc-polish-radius: 28px;
}

html {
  background: #eaf1fb;
}

body.wc-appview-body,
body.wc-licenseapp-body,
body.wc-supportapp-body,
body.wc-service-page-body {
  min-height: 100vh;
  color: var(--wc-polish-text);
  background:
    radial-gradient(circle at 50% -12%, rgba(55, 135, 235, 0.26), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(255, 134, 23, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #e8f0fa 56%, #dde8f5 100%);
}

body:has(.wc-app-shell:not(.wc-app-shell--appview)) {
  color: #eaf3ff;
  background:
    radial-gradient(circle at 20% 0%, rgba(32, 149, 255, 0.3), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(255, 134, 23, 0.16), transparent 24%),
    linear-gradient(180deg, #08192f 0%, #06101f 100%);
}

.wc-appview-screen,
.wc-service-mobile-screen,
.wc-licenseapp-screen,
.wc-supportapp-screen {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.92) 34%, transparent 62%),
    linear-gradient(180deg, #f9fcff 0%, #edf4fc 54%, #e6eff9 100%);
}

.wc-appview-scroll-area,
.wc-service-mobile-scroll,
.wc-licenseapp-scroll,
.wc-supportapp-scroll {
  min-height: 0;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.wc-appview-scroll-area::-webkit-scrollbar,
.wc-service-mobile-scroll::-webkit-scrollbar,
.wc-licenseapp-scroll::-webkit-scrollbar,
.wc-supportapp-scroll::-webkit-scrollbar {
  display: none;
}

.wc-appview-header,
.wc-service-mobile-topbar,
.wc-licenseapp-topbar,
.wc-supportapp-topbar {
  backdrop-filter: blur(22px) saturate(150%);
}

.wc-appview-island,
.wc-service-mobile-navbutton,
.wc-licenseapp-topbutton,
.wc-supportapp-topbutton {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wc-appview-island-button:hover,
.wc-appview-island-button:focus-visible,
.wc-service-mobile-navbutton:hover,
.wc-service-mobile-navbutton:focus-visible,
.wc-licenseapp-topbutton:hover,
.wc-licenseapp-topbutton:focus-visible,
.wc-supportapp-topbutton:hover,
.wc-supportapp-topbutton:focus-visible {
  transform: translateY(-1px);
}

.wc-appview-brand-image {
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 42, 92, 0.16));
}

.wc-appview-hero {
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 46px;
  border-bottom-left-radius: 46px;
  background:
    radial-gradient(circle at 20% 4%, rgba(125, 193, 255, 0.28), transparent 28%),
    linear-gradient(180deg, #197af1 0%, #0759c8 50%, #063f94 100%);
  box-shadow: 0 24px 48px rgba(0, 66, 157, 0.24);
}

.wc-appview-hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -80px;
  left: -18%;
  z-index: 0;
  height: 158px;
  border-radius: 50% 50% 0 0;
  background: #f5f9ff;
}

.wc-appview-hero > * {
  position: relative;
  z-index: 1;
}

.wc-appview-hero-media {
  box-shadow:
    0 18px 34px rgba(0, 53, 132, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.wc-appview-hero-copy h1,
.wc-service-mobile-hero h2,
.wc-licenseapp-hero-card h1,
.wc-supportapp-hero-card h1 {
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.wc-appview-primary-cta,
.wc-appview-license-button,
.wc-appview-campaign-button,
.wc-service-mobile-button--primary,
.wc-service-mobile-bottom-button--primary,
.wc-licenseapp-actionlink--primary,
.wc-licenseapp-supportbutton,
.wc-supportapp-button--primary,
.wc-supportapp-chiplink--primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #ff9b27 0%, #ff7613 100%);
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(255, 119, 18, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.wc-appview-primary-cta:hover,
.wc-appview-license-button:hover,
.wc-appview-campaign-button:hover,
.wc-service-mobile-button--primary:hover,
.wc-service-mobile-bottom-button--primary:hover,
.wc-licenseapp-actionlink--primary:hover,
.wc-licenseapp-supportbutton:hover,
.wc-supportapp-button--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 36px rgba(255, 119, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.wc-appview-hero-bridge {
  position: relative;
  z-index: 2;
  margin: -6px 14px 0;
  padding: 14px;
  border: 1px solid rgba(24, 78, 152, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--wc-polish-soft-shadow);
  backdrop-filter: blur(20px) saturate(150%);
}

.wc-appview-marketplace-strip,
.wc-appview-features,
.wc-appview-tech-grid {
  gap: 10px;
}

.wc-appview-marketplace-badge,
.wc-appview-feature-card,
.wc-appview-tech-card,
.wc-service-mobile-feature-card,
.wc-service-mobile-package-card,
.wc-service-mobile-mini-card,
.wc-licenseapp-statcard,
.wc-licenseapp-infocard,
.wc-supportapp-stat,
.wc-supportapp-story {
  border: 1px solid rgba(38, 82, 138, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.88));
  box-shadow:
    0 15px 26px rgba(24, 54, 97, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-appview-feature-card,
.wc-appview-tech-card {
  min-height: 124px;
  padding: 17px 10px 14px;
  border-radius: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wc-appview-feature-card:hover,
.wc-appview-feature-card:focus-visible,
.wc-appview-tech-card:hover,
.wc-appview-tech-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 232, 0.24);
  box-shadow: 0 22px 34px rgba(24, 83, 155, 0.16);
}

.wc-appview-feature-icon,
.wc-appview-tech-card-icon,
.wc-service-mobile-feature-icon,
.wc-service-mobile-mini-icon,
.wc-licenseapp-cardicon,
.wc-supportapp-avatar,
.wc-supportapp-storyicon {
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(180deg, #2e8dff 0%, #075ed6 100%);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(10, 94, 210, 0.22);
}

.wc-appview-feature-card:nth-child(4) .wc-appview-feature-icon,
.wc-appview-tech-card:nth-child(4) .wc-appview-tech-card-icon {
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(180deg, #ff9d27 0%, #ff7412 100%);
  box-shadow: 0 14px 24px rgba(255, 117, 18, 0.24);
}

.wc-appview-license-card,
.wc-appview-campaign-card,
.wc-licenseapp-card,
.wc-licenseapp-supportcard,
.wc-supportapp-compose,
.wc-supportapp-ticket,
.wc-supportapp-empty,
.wc-supportapp-contact article {
  border: 1px solid rgba(41, 78, 124, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.9));
  box-shadow: var(--wc-polish-shadow);
}

.wc-appview-license-field input,
.wc-supportapp-field input,
.wc-supportapp-field select,
.wc-supportapp-field textarea {
  border: 1px solid rgba(37, 76, 125, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 10px 22px rgba(26, 65, 121, 0.06);
}

.wc-appview-license-field input:focus,
.wc-supportapp-field input:focus,
.wc-supportapp-field select:focus,
.wc-supportapp-field textarea:focus {
  border-color: rgba(11, 111, 232, 0.5);
  box-shadow:
    0 0 0 4px rgba(11, 111, 232, 0.12),
    0 14px 26px rgba(26, 87, 176, 0.12);
}

.wc-appview-campaign-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 30%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #315983 0%, #1d4f98 52%, #10356e 100%);
}

.wc-appview-campaign-button {
  border-radius: 17px;
}

.wc-appview-location {
  margin-top: 18px;
}

.wc-appview-map-card {
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(41, 78, 124, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 143, 31, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.9));
  box-shadow: var(--wc-polish-shadow);
}

.wc-appview-map-visual {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 26% 22%, rgba(108, 178, 255, 0.34), transparent 30%),
    linear-gradient(145deg, #dff0ff 0%, #eef6ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 28px rgba(21, 62, 118, 0.12);
}

.wc-appview-map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 56, 112, 0.02), rgba(12, 56, 112, 0.08)),
    radial-gradient(circle at 50% 50%, transparent 0 44%, rgba(255, 255, 255, 0.42) 76%);
}

.wc-appview-map-visual iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.04) contrast(1.02);
}

.wc-appview-map-float {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 9px;
  align-items: center;
  min-width: 168px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 16px 28px rgba(15, 55, 110, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(150%);
}

.wc-appview-map-pulse {
  grid-row: span 2;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(180deg, #ff9b27 0%, #ff7412 100%);
  box-shadow: 0 10px 20px rgba(255, 116, 18, 0.28);
}

.wc-appview-map-pulse::before,
.wc-appview-map-pulse::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: #ffffff;
}

.wc-appview-map-pulse::after {
  inset: -7px;
  border: 1px solid rgba(255, 116, 18, 0.35);
  background: transparent;
  animation: wcMapPulse 1.9s ease-out infinite;
}

.wc-appview-map-float strong {
  color: #123160;
  font-size: 12px;
  line-height: 1.1;
}

.wc-appview-map-float small {
  color: #667f9f;
  font-size: 10px;
  font-weight: 800;
}

.wc-appview-map-copy {
  display: grid;
  gap: 10px;
  padding: 4px 4px 2px;
}

.wc-appview-map-kicker {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 111, 232, 0.1);
  color: #0b63d5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-appview-map-copy h3 {
  margin: 0;
  color: #123160;
  font-family: var(--wc-font-display);
  font-size: 23px;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.wc-appview-map-copy p {
  margin: 0;
  color: #667f9f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.wc-appview-map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.wc-appview-map-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(37, 80, 133, 0.1);
  border-radius: 999px;
  background: rgba(238, 246, 255, 0.9);
  color: #36557b;
  font-size: 10px;
  font-weight: 900;
}

.wc-appview-map-actions {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9px;
  margin-top: 2px;
}

.wc-appview-map-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: #ffffff;
  color: #173763;
  font-size: 12px;
  font-weight: 900;
  box-shadow:
    0 12px 24px rgba(26, 65, 121, 0.1),
    inset 0 0 0 1px rgba(37, 80, 133, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-appview-map-button:hover,
.wc-appview-map-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(26, 65, 121, 0.14);
}

.wc-appview-map-button--primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #147ef5 0%, #075bd0 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(7, 91, 208, 0.26);
}

@keyframes wcMapPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.wc-appview-tabbar,
.wc-licenseapp-dock,
.wc-supportapp-dock,
.wc-service-mobile-bottom-bar {
  border: 1px solid rgba(35, 74, 122, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.9));
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 20px 42px rgba(21, 45, 81, 0.18),
    0 6px 16px rgba(21, 45, 81, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-appview-tab,
.wc-licenseapp-docklink,
.wc-supportapp-docklink,
.wc-service-mobile-bottom-button {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wc-appview-tab:hover,
.wc-appview-tab:focus-visible,
.wc-licenseapp-docklink:hover,
.wc-licenseapp-docklink:focus-visible,
.wc-supportapp-docklink:hover,
.wc-supportapp-docklink:focus-visible {
  transform: translateY(-2px);
}

.wc-service-mobile-bottom-bar {
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 14px;
  z-index: 8;
  padding: 10px;
  border-radius: 28px;
}

.wc-service-mobile-bottom-button--secondary {
  background: rgba(255, 255, 255, 0.88);
  color: #173763;
  box-shadow: inset 0 0 0 1px rgba(39, 79, 128, 0.08);
}

.wc-service-mobile-scroll {
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}

.wc-service-mobile-hero {
  padding-top: 20px;
}

.wc-service-mobile-eyebrow {
  color: #315983;
  background: linear-gradient(90deg, transparent, rgba(38, 112, 214, 0.12), transparent);
}

.wc-service-mobile-showcase {
  margin-top: 18px;
}

.wc-service-mobile-showcase-surface {
  min-height: 318px;
  border: 1px solid rgba(36, 84, 147, 0.1);
  background:
    radial-gradient(circle at 50% 72%, rgba(22, 129, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #e8f3ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-licenseapp-topbar,
.wc-supportapp-topbar {
  padding-top: max(20px, calc(env(safe-area-inset-top) + 10px));
}

.wc-licenseapp-scroll,
.wc-supportapp-scroll {
  padding-bottom: calc(106px + env(safe-area-inset-bottom));
}

.wc-licenseapp-hero-card,
.wc-supportapp-hero-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #244a7e 0%, #173866 58%, #10294f 100%);
}

.wc-licenseapp-hero-card::after,
.wc-supportapp-hero-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(93, 160, 244, 0.16);
}

.wc-licenseapp-hero-card,
.wc-supportapp-hero-card {
  position: relative;
}

.wc-licenseapp-hero-card > *,
.wc-supportapp-hero-card > * {
  position: relative;
  z-index: 1;
}

.wc-licenseapp-stats,
.wc-supportapp-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.wc-licenseapp-statcard,
.wc-supportapp-stat {
  min-height: 88px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.wc-licenseapp-statcard span,
.wc-licenseapp-statcard small,
.wc-supportapp-stat small {
  color: rgba(255, 255, 255, 0.74);
}

.wc-licenseapp-infogrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-licenseapp-cardlist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wc-licenseapp-card {
  border-radius: 27px;
}

.wc-licenseapp-cardhead {
  align-items: start;
}

.wc-licenseapp-progressgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wc-supportapp-storyrow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82px;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
}

.wc-supportapp-story {
  min-height: 84px;
  padding: 11px 7px;
  border-radius: 22px;
}

.wc-supportapp-story.is-active {
  color: #0f63d8;
  background: linear-gradient(180deg, #e8f3ff 0%, #ffffff 100%);
}

.wc-supportapp-storyicon {
  width: 38px;
  height: 38px;
  border-radius: 15px;
}

.wc-supportapp-story strong {
  font-size: 10px;
}

.wc-supportapp-compose {
  border-radius: 30px;
}

.wc-supportapp-composehead {
  align-items: start;
}

.wc-supportapp-composebadge {
  width: fit-content;
}

.wc-supportapp-composechips span,
.wc-supportapp-ticketmeta span,
.wc-supportapp-chiplink,
.wc-licenseapp-pill {
  border: 1px solid rgba(36, 84, 147, 0.1);
  background: rgba(238, 246, 255, 0.92);
}

.wc-supportapp-contact {
  margin-bottom: 10px;
}

.wc-app-shell:not(.wc-app-shell--appview) {
  width: min(100% - 28px, 860px);
  padding-top: max(18px, env(safe-area-inset-top));
  padding-bottom: calc(118px + env(safe-area-inset-bottom));
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-runtime-strip,
.wc-app-shell:not(.wc-app-shell--appview) .wc-panel-header,
.wc-app-shell:not(.wc-app-shell--appview) .wc-page-hero,
.wc-app-shell:not(.wc-app-shell--appview) .wc-panel-menu,
.wc-app-shell:not(.wc-app-shell--appview) .wc-card,
.wc-app-shell:not(.wc-app-shell--appview) .wc-list-card,
.wc-app-shell:not(.wc-app-shell--appview) .wc-list-item {
  border: 1px solid rgba(140, 185, 241, 0.14);
  background:
    linear-gradient(180deg, rgba(17, 34, 58, 0.92), rgba(12, 25, 45, 0.86));
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-panel-header {
  position: sticky;
  top: max(10px, env(safe-area-inset-top));
  z-index: 20;
  border-radius: 26px;
  backdrop-filter: blur(22px) saturate(150%);
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-page-hero {
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, rgba(54, 143, 255, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(24, 55, 97, 0.96), rgba(9, 24, 45, 0.92));
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-page-hero h1,
.wc-app-shell:not(.wc-app-shell--appview) .wc-card h2,
.wc-app-shell:not(.wc-app-shell--appview) .wc-list-card h2 {
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-panel-menu {
  position: sticky;
  top: calc(max(10px, env(safe-area-inset-top)) + 82px);
  z-index: 19;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  border-radius: 24px;
  scrollbar-width: none;
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-panel-menu::-webkit-scrollbar {
  display: none;
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-panel-menu-link {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b6c9df;
  font-weight: 800;
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-panel-menu-link.is-current {
  color: #ffffff;
  background: linear-gradient(180deg, #2395ff 0%, #0d65d9 100%);
  box-shadow: 0 12px 24px rgba(13, 101, 217, 0.28);
}

.wc-app-shell:not(.wc-app-shell--appview) .wc-list-item {
  border-radius: 22px;
}

.wc-mobile-dock {
  position: fixed;
  right: auto;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 50%;
  z-index: 40;
  width: min(100% - 28px, 720px);
  transform: translateX(-50%);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(235, 244, 255, 0.9));
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wc-mobile-dock-link {
  border-radius: 18px;
}

.wc-mobile-dock-link.is-current {
  color: #0f63d8;
  background: linear-gradient(180deg, rgba(46, 141, 255, 0.16), rgba(46, 141, 255, 0.05));
}

@media (max-width: 860px) {
  body.wc-appview-body,
  body.wc-licenseapp-body,
  body.wc-supportapp-body {
    background: #e8f0fa;
  }

  .wc-appview-body .wc-app-shell--appview,
  .wc-licenseapp-shell,
  .wc-supportapp-shell {
    padding: 0;
  }

  .wc-appview-device,
  .wc-licenseapp-device,
  .wc-supportapp-device {
    width: 100%;
    min-height: 100svh;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wc-appview-device::before,
  .wc-appview-device::after,
  .wc-appview-power-button,
  .wc-appview-volume-buttons,
  .wc-licenseapp-power-button,
  .wc-licenseapp-volume-buttons,
  .wc-supportapp-power-button,
  .wc-supportapp-volume-buttons {
    display: none;
  }

  .wc-appview-screen,
  .wc-service-mobile-screen,
  .wc-licenseapp-screen,
  .wc-supportapp-screen {
    min-height: 100svh;
    height: 100svh;
    border-radius: 0;
    box-shadow: none;
  }

  .wc-appview-scroll-area,
  .wc-service-mobile-scroll,
  .wc-licenseapp-scroll,
  .wc-supportapp-scroll {
    flex: 1 1 auto;
  }
}

@media (max-width: 520px) {
  .wc-appview-header {
    padding-right: 13px;
    padding-left: 13px;
  }

  .wc-appview-hero {
    border-bottom-right-radius: 38px;
    border-bottom-left-radius: 38px;
  }

  .wc-appview-hero-bridge {
    margin-right: 10px;
    margin-left: 10px;
    padding: 12px;
    border-radius: 26px;
  }

  .wc-appview-features,
  .wc-appview-tech-grid {
    padding-right: 10px;
    padding-left: 10px;
  }

  .wc-appview-feature-card,
  .wc-appview-tech-card {
    min-height: 118px;
    border-radius: 20px;
  }

  .wc-service-mobile-bottom-bar,
  .wc-licenseapp-dock,
  .wc-supportapp-dock,
  .wc-home-dock {
    right: 11px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    left: 11px;
    padding: 8px;
    border-radius: 26px;
  }

  .wc-licenseapp-docklink,
  .wc-supportapp-docklink,
  .wc-home-dock .wc-appview-tab {
    min-height: 57px;
  }

  .wc-licenseapp-infogrid,
  .wc-licenseapp-cardlist,
  .wc-licenseapp-progressgrid {
    grid-template-columns: 1fr;
  }

  .wc-licenseapp-infocard {
    min-height: auto;
  }

  .wc-supportapp-composehead {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .wc-supportapp-avatar {
    width: 48px;
    height: 48px;
  }

  .wc-supportapp-storyrow {
    grid-auto-columns: 74px;
    gap: 8px;
  }

  .wc-supportapp-story {
    min-height: 78px;
    border-radius: 20px;
  }

  .wc-supportapp-storyicon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 390px) {
  .wc-appview-feature-card strong,
  .wc-appview-tech-card strong,
  .wc-service-mobile-feature-card strong,
  .wc-licenseapp-docklink span:last-child,
  .wc-supportapp-docklink span:last-child,
  .wc-home-dock .wc-appview-tab > span:last-child {
    font-size: 8.5px;
  }

  .wc-appview-feature-card small,
  .wc-appview-tech-card small {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wc-appview-feature-card,
  .wc-appview-tech-card,
  .wc-appview-primary-cta,
  .wc-appview-license-button,
  .wc-appview-campaign-button,
  .wc-service-mobile-button,
  .wc-service-mobile-bottom-button,
  .wc-licenseapp-actionlink,
  .wc-supportapp-button,
  .wc-appview-tab,
  .wc-licenseapp-docklink,
  .wc-supportapp-docklink {
    transition: none;
  }
}
