:root {
  --ink-blue: #0A1F44;
  --night-blue: #071330;
  --field-green: #00E676;
  --signal-orange: #FF6D00;
  --deep-teal: #0F4C5C;
  --wine: #7B2D26;
  --indigo: #3F0D5F;
  --porcelain: #F5F7FA;
  --steel-mist: #9AA7B8;
  --ice-white: #E8F0F2;
  --header-h: 74px;
  --ticker-h: 40px;
  --content-max: 1200px;
  --radius: 4px;
  --font-display: "Archivo Black", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Roboto", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "Roboto Mono", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

body {
  min-height: 100vh;
  background: var(--ink-blue);
  color: var(--porcelain);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
  transition: color 0.2s ease;
}

::selection {
  background: var(--field-green);
  color: var(--ink-blue);
}

:focus-visible {
  outline: 3px solid var(--signal-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .site-nav {
    transition: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker-pulse {
    animation: none;
  }
  .btn:hover,
  .btn-primary:hover,
  .btn-accent:hover {
    transform: none;
    filter: none;
  }
  .media-frame:hover img {
    transform: none;
  }
  .arrow-link:hover {
    gap: 8px;
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  background: var(--field-green);
  color: var(--ink-blue);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-220%);
  transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink-blue);
  border-bottom: 1px solid rgba(0, 230, 118, 0.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  z-index: 4;
  background: linear-gradient(180deg, var(--field-green), var(--signal-orange));
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 5;
  background: linear-gradient(90deg, var(--field-green), var(--signal-orange));
  transform: scaleX(0);
  transform-origin: left center;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  padding: 0 32px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark-icon {
  display: grid;
  place-items: center;
  height: 42px;
  padding-inline: 10px;
  background: var(--field-green);
  color: var(--ink-blue);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}

.brand-mark-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.brand-mark-cn {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--porcelain);
}

.brand-mark-en {
  font-family: var(--font-data);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--field-green);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(245, 247, 250, 0.06);
  border: 1px solid rgba(154, 167, 184, 0.35);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--porcelain);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  flex-shrink: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 10px 14px;
  color: var(--porcelain);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--field-green);
  border-bottom-color: var(--signal-orange);
}

.nav-link[aria-current="page"] {
  color: var(--field-green);
  border-bottom-color: var(--field-green);
  background: linear-gradient(0deg, rgba(0, 230, 118, 0.14), rgba(0, 230, 118, 0) 70%);
}

.header-ticker {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  height: var(--ticker-h);
  padding: 0 32px;
  border-top: 1px solid rgba(154, 167, 184, 0.14);
  background: linear-gradient(90deg, rgba(0, 230, 118, 0.06), transparent 38%);
  font-family: var(--font-data);
}

.ticker-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--field-green);
  animation: tickerPulse 2.2s var(--ease-out) infinite;
}

.ticker-label {
  font-family: var(--font-data);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-orange);
  border: 1px solid rgba(255, 109, 0, 0.4);
  padding: 3px 8px;
  line-height: 1;
  border-radius: 2px;
}

.ticker-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--field-green);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  background: rgba(0, 230, 118, 0.08);
  padding: 4px 10px;
  border-radius: 2px;
}

.ticker-status {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--steel-mist);
}

@keyframes tickerPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.site-footer {
  background: var(--night-blue);
  color: var(--porcelain);
  border-top: 3px solid var(--deep-teal);
}

.footer-shell {
  max-width: var(--content-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--porcelain);
  text-decoration: none;
}

.footer-logo::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--field-green);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  flex-shrink: 0;
}

.footer-trust {
  margin-top: 16px;
  max-width: 44ch;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--steel-mist);
}

.footer-heading {
  margin: 0 0 16px;
  font-family: var(--font-data);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--field-green);
}

.footer-nav-list,
.footer-legal-list {
  display: grid;
  gap: 10px;
}

.footer-nav-list a,
.footer-legal-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--porcelain);
  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.82;
}

.footer-nav-list a::before,
.footer-legal-list a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--signal-orange);
  flex-shrink: 0;
}

.footer-nav-list a:hover,
.footer-legal-list a:hover {
  color: var(--field-green);
  opacity: 1;
}

.footer-address {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--steel-mist);
}

.footer-address span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  background: var(--deep-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(154, 167, 184, 0.14);
}

.footer-bottom p {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 18px 24px;
  text-align: center;
  color: var(--steel-mist);
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.footer-bottom [data-year] {
  color: var(--porcelain);
  font-variant-numeric: tabular-nums;
}

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 84px;
}

.section--light {
  background: var(--ice-white);
  color: var(--ink-blue);
}

.section--light .section-title {
  color: var(--ink-blue);
}

.section--light .section-desc,
.section--light .data-label {
  color: #3D4F63;
}

.section--light .section-kicker {
  color: var(--deep-teal);
  border-left-color: var(--signal-orange);
}

.section--light .card {
  background: #ffffff;
  border-color: rgba(10, 31, 68, 0.12);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.06);
}

.section--teal {
  background: var(--deep-teal);
}

.section--wine {
  background: var(--wine);
}

.section--indigo {
  background: var(--indigo);
}

.section--teal .section-desc,
.section--wine .section-desc,
.section--indigo .section-desc {
  color: rgba(245, 247, 250, 0.78);
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--signal-orange);
  font-family: var(--font-data);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--field-green);
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--porcelain);
}

.section-desc {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--steel-mist);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 96px) 0 64px;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(0, 230, 118, 0.12), transparent 50%),
    linear-gradient(135deg, var(--ink-blue), var(--night-blue));
  border-bottom: 1px solid rgba(0, 230, 118, 0.15);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 230, 118, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 118, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 42%;
  height: 100%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 109, 0, 0.14) 38%, rgba(0, 230, 118, 0.12) 62%, transparent 80%);
  clip-path: polygon(12% 0, 100% 0, 72% 100%, 0 100%);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--porcelain);
}

.page-hero-desc {
  max-width: 540px;
  font-size: 1.05rem;
  color: var(--steel-mist);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--steel-mist);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li + li::before {
  content: "/";
  color: rgba(154, 167, 184, 0.5);
}

.breadcrumb a {
  color: var(--steel-mist);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--field-green);
}

.breadcrumb [aria-current="page"] {
  color: var(--porcelain);
  font-weight: 700;
}

.btn {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border: 2px solid rgba(245, 247, 250, 0.35);
  border-radius: var(--radius);
  background: rgba(245, 247, 250, 0.05);
  color: var(--porcelain);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  color: var(--field-green);
  border-color: var(--field-green);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.btn-primary {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-blue);
}

.btn-primary::after {
  display: block;
  background: var(--field-green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--ink-blue);
  border-color: transparent;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  filter: drop-shadow(0 8px 16px rgba(0, 230, 118, 0.4));
}

.btn-accent {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-blue);
}

.btn-accent::after {
  display: block;
  background: var(--signal-orange);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  color: var(--ink-blue);
  border-color: transparent;
}

.btn-accent:hover::after,
.btn-accent:focus-visible::after {
  filter: drop-shadow(0 8px 16px rgba(255, 109, 0, 0.4));
}

.btn-ghost {
  border-color: rgba(245, 247, 250, 0.65);
  background: transparent;
}

.card {
  position: relative;
  padding: 28px;
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.06), rgba(245, 247, 250, 0.02));
  border: 1px solid rgba(154, 167, 184, 0.18);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 38px;
  height: 38px;
  background: linear-gradient(225deg, var(--field-green) 0%, var(--field-green) 50%, transparent 50.5%);
}

.card--orange::before {
  background: linear-gradient(225deg, var(--signal-orange) 0%, var(--signal-orange) 50%, transparent 50.5%);
}

.card--teal::before {
  background: linear-gradient(225deg, var(--deep-teal) 0%, var(--deep-teal) 50%, transparent 50.5%);
}

.card--indigo::before {
  background: linear-gradient(225deg, var(--indigo) 0%, var(--indigo) 50%, transparent 50.5%);
}

.card:hover {
  border-color: rgba(0, 230, 118, 0.5);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--porcelain);
  background: rgba(15, 76, 92, 0.75);
  border: 1px solid rgba(154, 167, 184, 0.25);
  border-radius: 999px;
}

.tag--green {
  color: var(--ink-blue);
  background: var(--field-green);
  border-color: var(--field-green);
}

.tag--orange {
  color: var(--ink-blue);
  background: var(--signal-orange);
  border-color: var(--signal-orange);
}

.data-stat {
  font-family: var(--font-data);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--field-green);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.data-label {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-mist);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(0, 230, 118, 0.35);
  color: var(--field-green);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.25s var(--ease-out), border-color 0.2s ease;
}

.arrow-link::after {
  content: "→";
  font-family: var(--font-data);
}

.arrow-link:hover {
  gap: 14px;
  border-bottom-color: var(--field-green);
}

.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(154, 167, 184, 0.18);
  background: linear-gradient(135deg, var(--night-blue), var(--deep-teal));
}

.media-16-9 {
  aspect-ratio: 16 / 9;
}

.media-4-3 {
  aspect-ratio: 4 / 3;
}

.media-3-2 {
  aspect-ratio: 3 / 2;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.media-frame:hover img {
  transform: scale(1.03);
}

.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-mist);
  border: 1px dashed rgba(154, 167, 184, 0.35);
  background:
    repeating-linear-gradient(45deg, rgba(154, 167, 184, 0.05) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, var(--night-blue), var(--ink-blue));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-reveal="visible"] {
  opacity: 1;
  transform: translateY(0);
}

body.nav-locked {
  overflow: hidden;
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
    --ticker-h: 38px;
  }

  .header-shell {
    padding: 0 20px;
  }

  .header-ticker {
    gap: 10px;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .ticker-status {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 84vw);
    height: calc(100vh - var(--header-h));
    z-index: 10;
    padding: 28px 20px;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--night-blue), var(--ink-blue));
    border-left: 1px solid rgba(0, 230, 118, 0.25);
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(102%);
    visibility: hidden;
    transition: transform 0.38s var(--ease-out), visibility 0s linear 0.38s;
  }

  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.38s var(--ease-out);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(154, 167, 184, 0.14);
    border-left: 4px solid transparent;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom-color: rgba(154, 167, 184, 0.14);
  }

  .nav-link[aria-current="page"] {
    border-bottom-color: rgba(154, 167, 184, 0.14);
    border-left-color: var(--field-green);
    background: rgba(0, 230, 118, 0.1);
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 24px 40px;
  }

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

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

  .section {
    padding-block: 64px;
  }

  .page-hero {
    padding-top: 64px;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 16px;
  }

  .header-shell {
    padding: 0 16px;
  }

  .header-ticker {
    padding: 0 16px;
  }

  .brand-mark-cn {
    font-size: 1.25rem;
  }

  .brand-mark-en {
    display: none;
  }

  .ticker-status {
    display: none;
  }

  .ticker-label {
    font-size: 0.62rem;
    padding: 3px 6px;
  }

  .ticker-time {
    font-size: 0.82rem;
    padding: 3px 8px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }

  .footer-shell {
    padding: 44px 20px 32px;
  }

  .footer-bottom p {
    padding: 16px 20px;
    font-size: 0.76rem;
  }
}
