:root {
  --primary: #0b4a8f;
  --primary-dark: #06315f;
  --primary-soft: #e8f2ff;
  --accent: #00b8d9;
  --accent-2: #6ee7f9;
  --gold: #f5b84b;
  --text: #172033;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(8, 45, 86, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.7;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-header.is-scrolled .brand {
  color: var(--primary-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 12px 26px rgba(0, 184, 217, 0.28);
}

.brand-name {
  font-size: 18px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
}

.site-header.is-scrolled .nav-links {
  color: var(--text);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
  content: "";
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent-2);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.is-active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 14px 28px rgba(0, 184, 217, 0.28);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .btn-ghost {
  border-color: rgba(11, 74, 143, 0.18);
  color: var(--primary);
  background: rgba(11, 74, 143, 0.06);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  padding: 136px 0 88px;
  color: white;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 184, 217, 0.32), transparent 32%),
    radial-gradient(circle at 12% 70%, rgba(110, 231, 249, 0.22), transparent 26%),
    linear-gradient(135deg, #061c3f 0%, #0b4a8f 52%, #072b55 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.1));
  pointer-events: none;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(110, 231, 249, 0.14);
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero .lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 30px;
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.orbit-card {
  position: absolute;
  inset: 38px 0 auto auto;
  width: min(100%, 520px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.visual-chip {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(110, 231, 249, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-lines {
  display: grid;
  gap: 12px;
}

.visual-line {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.visual-line i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  animation: grow 2.6s ease infinite alternate;
}

.line-86 { --w: 86%; }
.line-72 { --w: 72%; }
.line-94 { --w: 94%; }

@keyframes grow {
  from { width: calc(var(--w) - 16%); }
  to { width: var(--w); }
}

.node-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.node {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.node b {
  display: block;
  margin-bottom: 6px;
}

.node small {
  color: rgba(255, 255, 255, 0.64);
}

.floating-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: white;
  box-shadow: var(--shadow);
  font-weight: 800;
  animation: float 5s ease-in-out infinite;
}

.pill-1 { left: 0; top: 56px; }
.pill-2 { right: 10px; bottom: 36px; animation-delay: -1.4s; }
.pill-3 { left: 28px; bottom: 132px; animation-delay: -2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

section {
  position: relative;
  padding: 96px 0;
}

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

.section-kicker {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 16px;
  color: #0f1f38;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-desc {
  color: var(--muted);
  font-size: 17px;
}

.highlights {
  background: white;
}

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

.highlight-card,
.product-card,
.solution-card,
.about-card,
.capability-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover,
.product-card:hover,
.solution-card:hover,
.capability-card:hover {
  border-color: rgba(0, 184, 217, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.highlight-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 24px;
}

.highlight-card::after {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary-soft);
  content: "";
}

.icon-box {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 24px rgba(11, 74, 143, 0.22);
}

.highlight-card h3,
.product-card h3,
.solution-card h3,
.capability-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
}

.highlight-card p,
.product-card p,
.solution-card p,
.capability-card p {
  color: var(--muted);
  font-size: 15px;
}

.products {
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 184, 217, 0.08), transparent 28%),
    var(--bg);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: 30px;
}

.product-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 190px;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  color: white;
  background:
    linear-gradient(135deg, rgba(11, 74, 143, 0.92), rgba(0, 184, 217, 0.82)),
    radial-gradient(circle at 70% 20%, white, transparent 25%);
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  content: "";
}

.product-visual::before {
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
}

.product-visual::after {
  left: 24px;
  bottom: -36px;
  width: 90px;
  height: 90px;
}

.product-visual b {
  position: relative;
  z-index: 1;
  max-width: 250px;
  font-size: 20px;
  line-height: 1.35;
}

.product-visual span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin-top: auto;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #334155;
  font-size: 15px;
}

.feature-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 900;
  content: "✓";
}

.solutions {
  overflow: hidden;
  color: white;
  background: #071f3f;
}

.solutions::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 184, 217, 0.28), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(245, 184, 75, 0.18), transparent 30%);
  pointer-events: none;
  content: "";
}

.solutions .container {
  position: relative;
  z-index: 1;
}

.solutions .section-kicker,
.solutions .section-title {
  color: white;
}

.solutions .section-desc {
  color: rgba(255, 255, 255, 0.68);
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.tab-btn {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.is-active,
.tab-btn:hover {
  border-color: white;
  color: #071f3f;
  background: white;
}

.solution-panel {
  display: none;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 24px;
}

.solution-panel.is-active {
  display: grid;
  animation: fadeUp 0.35s ease both;
}

.solution-card {
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.solution-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.solution-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.solution-card .feature-list li {
  color: rgba(255, 255, 255, 0.86);
}

.solution-card .feature-list li::before {
  color: var(--accent-2);
  background: rgba(110, 231, 249, 0.16);
}

.solution-dashboard {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.dashboard-title {
  color: var(--primary-dark);
  font-weight: 900;
}

.dashboard-badge {
  padding: 6px 12px;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 900;
}

.process-item b {
  display: block;
  font-size: 15px;
}

.process-item small {
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 34px;
}

.about-card {
  position: sticky;
  top: 104px;
  padding: 34px;
}

.about-card h3 {
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 30px;
}

.about-card p {
  margin-bottom: 18px;
  color: #475569;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 800;
}

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

.capability-card {
  padding: 24px;
}

.capability-card .icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
}

.cta {
  overflow: hidden;
  padding: 90px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(110, 231, 249, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

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

.cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  justify-self: end;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.contact-phone span,
.wechat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.contact-phone a {
  display: inline-block;
  margin-top: 4px;
  color: white;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.wechat-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.wechat-card img {
  width: 112px;
  height: 112px;
  padding: 8px;
  border-radius: 18px;
  background: white;
}

.wechat-card span {
  font-size: 12px;
}

.footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.66);
  background: #041529;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@media (max-width: 1024px) {
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-panel {
    position: fixed;
    inset: 76px 20px auto 20px;
    z-index: 98;
    display: none;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-panel.is-open {
    display: grid;
    gap: 10px;
    animation: fadeUp 0.2s ease both;
  }

  .mobile-panel a {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text);
    font-weight: 800;
  }

  .mobile-panel a:hover {
    color: var(--primary);
    background: var(--primary-soft);
  }

  .hero-grid,
  .solution-panel,
  .about-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .orbit-card {
    inset: 20px auto auto 0;
  }

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

  .about-card {
    position: static;
  }

  .contact-card {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    height: 68px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 70px;
  }

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

  .hero-stats,
  .highlight-grid,
  .product-grid,
  .dashboard-metrics,
  .capability-grid,
  .node-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  section {
    padding: 70px 0;
  }

  .solution-card,
  .about-card,
  .cta-card {
    padding: 26px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
  }

  .process-item {
    grid-template-columns: 40px 1fr;
  }

  .process-item .status-dot {
    display: none;
  }

  .mobile-panel {
    inset: 68px 14px auto 14px;
  }
}
