@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-header {
  width: min(1120px, 92%);
  margin: 1.25rem auto 0.5rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border: 1px solid rgba(12, 31, 54, 0.12);
  border-radius: 18px;
  background: rgba(251, 253, 255, 0.88);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 1rem;
  z-index: 10;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #0c1f36;
}
.site-header .brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 2px solid rgba(23, 52, 81, 0.2);
  object-fit: cover;
}
.site-header .brand-copy h1 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.1;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.02em;
}
.site-header .brand-copy p {
  margin: 0;
  font-size: 0.78rem;
  color: #355070;
}
.site-header .site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.site-header .site-nav a {
  text-decoration: none;
  color: #0c1f36;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 0.2rem;
}
.site-header .site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #16a8c7, #f1a11a);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.site-header .site-nav a:hover {
  color: #16a8c7;
}
.site-header .site-nav a:hover::after {
  transform: scaleX(1);
}
.site-header .header-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.site-header .nav-toggle {
  display: none;
  border: 1px solid var(--home-control-border, rgba(12, 31, 54, 0.2));
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 168, 199, 0.12), rgba(255, 255, 255, 0.92));
  color: var(--home-control-text, #0c1f36);
  font-family: "Reddit Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.58rem 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header .nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 168, 199, 0.55);
  box-shadow: 0 10px 22px rgba(22, 168, 199, 0.16);
}
.site-header .nav-toggle:focus-visible {
  outline: 2px solid var(--home-focus, #16a8c7);
  outline-offset: 2px;
}
.site-header .theme-toggle {
  border: 1px solid var(--home-control-border, rgba(12, 31, 54, 0.2));
  border-radius: 999px;
  background: var(--home-control-bg, rgba(255, 255, 255, 0.86));
  color: var(--home-control-text, #0c1f36);
  font-family: "Reddit Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.52rem 0.72rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.site-header .theme-toggle:hover {
  border-color: rgba(22, 168, 199, 0.55);
  transform: translateY(-1px);
}
.site-header .theme-toggle:focus-visible {
  outline: 2px solid var(--home-focus, #16a8c7);
  outline-offset: 2px;
}
@media screen and (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    top: 0.5rem;
    gap: 0.8rem;
    text-align: left;
    position: sticky;
  }
  .site-header .brand {
    width: auto;
    justify-content: flex-start;
    flex: 1 1 auto;
  }
  .site-header .brand img {
    width: 48px;
    height: 48px;
  }
  .site-header .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.7rem;
    border: 1px solid rgba(12, 31, 54, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 32px rgba(5, 18, 35, 0.1);
  }
  .site-header .site-nav a {
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    background: rgba(12, 31, 54, 0.03);
    width: 100%;
  }
  .site-header .header-controls {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  .site-header .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .cta-ghost {
    display: none;
  }
  .site-header.is-nav-open .site-nav {
    display: flex;
    order: 3;
  }
}

@media screen and (max-width: 900px) {
  :root[data-theme=dark] .site-header .site-nav {
    background: rgba(8, 23, 36, 0.95);
    border-color: rgba(127, 216, 234, 0.14);
  }
  :root[data-theme=dark] .site-header .site-nav a {
    background: rgba(127, 216, 234, 0.06);
  }
  :root[data-theme=dark] .site-header .nav-toggle {
    background: linear-gradient(135deg, rgba(51, 193, 221, 0.16), rgba(8, 23, 36, 0.94));
    border-color: rgba(127, 216, 234, 0.28);
    color: var(--text-main);
  }
}

:root {
  --surface-primary: #fbfdff;
  --surface-alt: #f4f8fb;
  --text-main: #10253f;
  --text-muted: #355070;
  --ink: #0c1f36;
  --ink-deep: #051223;
  --accent: #16a8c7;
  --accent-soft: #7fd8ea;
  --warm: #f1a11a;
  --home-header-bg: rgba(251, 253, 255, 0.88);
  --home-header-border: rgba(12, 31, 54, 0.12);
  --home-header-shadow: 0 14px 26px rgba(5, 18, 35, 0.06);
  --home-control-bg: rgba(255, 255, 255, 0.86);
  --home-control-border: rgba(12, 31, 54, 0.2);
  --home-control-text: #0c1f36;
  --home-focus: #16a8c7;
}

:root[data-theme=dark] {
  --surface-primary: #0f2439;
  --surface-alt: #14314b;
  --text-main: #e7f3ff;
  --text-muted: #a8c4db;
  --ink: #f1f8ff;
  --ink-deep: #ffffff;
  --accent: #33c1dd;
  --accent-soft: #95e0ef;
  --warm: #f0b14e;
  --home-header-bg: rgba(9, 24, 39, 0.9);
  --home-header-border: rgba(127, 216, 234, 0.22);
  --home-header-shadow: 0 16px 32px rgba(2, 8, 14, 0.45);
  --home-control-bg: rgba(16, 37, 57, 0.86);
  --home-control-border: rgba(127, 216, 234, 0.34);
  --home-control-text: #e9f5ff;
  --home-focus: #33c1dd;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(150deg, #f6fbff 0%, #f0f7fd 45%, #eef4f7 100%);
  color: var(--text-main);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}

:root[data-theme=dark] body {
  background: linear-gradient(150deg, #09192a 0%, #10253c 45%, #152f48 100%);
}

main {
  width: min(1120px, 92%);
  margin: 2.2rem auto 3rem;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.backdrop .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float 9s ease-in-out infinite;
}
.backdrop .orb-one {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 30% 30%, rgba(22, 168, 199, 0.55), rgba(127, 216, 234, 0.04));
  top: -160px;
  right: -120px;
}
.backdrop .orb-two {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 40% 40%, rgba(241, 161, 26, 0.3), rgba(241, 161, 26, 0));
  left: -160px;
  bottom: -220px;
  animation-delay: 1.8s;
}
.backdrop .grid-glow {
  position: absolute;
  width: 60%;
  height: 50%;
  left: 22%;
  top: 14%;
  border-radius: 28px;
  background-image: linear-gradient(rgba(12, 31, 54, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 31, 54, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85) 35%, transparent 78%);
  opacity: 0.45;
}
.backdrop [data-parallax] {
  will-change: transform;
}

.eyebrow {
  font-family: "Reddit Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #16a8c7;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: linear-gradient(180deg, #16a8c7, #f1a11a);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 1.2rem;
  align-items: stretch;
}
.hero .hero-copy {
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(12, 31, 54, 0.12);
  border-radius: 22px;
  padding: clamp(1.3rem, 3vw, 2.5rem);
  box-shadow: 0 16px 36px rgba(5, 18, 35, 0.1);
}
.hero h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.14;
  margin-bottom: 1rem;
  max-width: 20ch;
  background: linear-gradient(135deg, #051223 30%, #16a8c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.4rem 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cta:hover {
  transform: translateY(-1px);
}

.cta-solid {
  background: linear-gradient(135deg, #16a8c7 0%, #0b7fa0 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(22, 168, 199, 0.4), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
}
.cta-solid:hover {
  box-shadow: 0 14px 32px rgba(22, 168, 199, 0.55);
}

.cta-outline {
  border: 1px solid rgba(12, 31, 54, 0.24);
  color: #0c1f36;
  background: rgba(255, 255, 255, 0.68);
}
.cta-outline:hover {
  border-color: #16a8c7;
  color: #16a8c7;
}

.cta-ghost {
  border: 1px solid rgba(12, 31, 54, 0.2);
  color: #0c1f36;
  background: #fbfdff;
}
.cta-ghost:hover {
  box-shadow: 0 8px 20px rgba(5, 18, 35, 0.08);
}

.quick-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.quick-points li {
  border-left: 3px solid #f1a11a;
  padding: 0.55rem 0.8rem;
  background: rgba(241, 161, 26, 0.08);
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--text-main);
}

.hero-panel {
  background: linear-gradient(165deg, #0b1f36 0%, #173451 100%);
  border-radius: 22px;
  padding: 1.35rem 1.2rem 1.2rem;
  color: #fbfdff;
  border: 1px solid rgba(127, 216, 234, 0.25);
  box-shadow: 0 16px 34px rgba(5, 18, 35, 0.28);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.95rem;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #16a8c7, #f1a11a, #7fd8ea);
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(22, 168, 199, 0.22), rgba(22, 168, 199, 0));
  pointer-events: none;
}
.hero-panel .panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.hero-panel .panel-title {
  font-family: "Reddit Mono", monospace;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  color: #7fd8ea;
  margin: 0;
}
.hero-panel .panel-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(127, 216, 234, 0.1);
  border: 1px solid rgba(127, 216, 234, 0.22);
  color: #7fd8ea;
  font-family: "Reddit Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}
.hero-panel .panel-status-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f1a11a;
  box-shadow: 0 0 0 0 rgba(241, 161, 26, 0.55);
  animation: chip-pulse 2s ease-in-out infinite;
}
.hero-panel h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  line-height: 1.14;
  margin: 0;
  max-width: 14ch;
}
.hero-panel .panel-copy {
  margin: 0;
  color: rgba(231, 243, 255, 0.82);
  max-width: 34ch;
  font-size: 0.96rem;
}
.hero-panel .panel-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero-panel .panel-metrics span {
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 216, 234, 0.18);
  background: rgba(127, 216, 234, 0.08);
  color: #fbfdff;
  font-size: 0.8rem;
  line-height: 1.2;
}
.hero-panel .hero-panel-art {
  position: relative;
  min-height: 150px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.44), rgba(17, 52, 81, 0.18));
  border: 1px solid rgba(127, 216, 234, 0.12);
  overflow: hidden;
}
.hero-panel .hero-panel-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 36, 0.08), rgba(22, 168, 199, 0.1));
}
.hero-panel .hero-panel-art img {
  position: absolute;
  right: -18px;
  bottom: -12px;
  width: 190px;
  max-width: none;
  opacity: 0.88;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.24));
  animation: float-card 9s ease-in-out infinite;
}
.hero-panel a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  width: fit-content;
}
.hero-panel a:hover {
  color: #7fd8ea;
}
.hero-panel a::after {
  content: " →";
}

.social-hub,
.services,
.product-focus,
.campaign,
.contact {
  margin-top: 2rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  border-radius: 20px;
  border: 1px solid rgba(12, 31, 54, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(5, 18, 35, 0.08);
}

.section-heading {
  margin-bottom: 1.1rem;
}
.section-heading h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--ink-deep);
  max-width: 26ch;
}
.section-heading::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #16a8c7, #f1a11a);
  border-radius: 2px;
  margin-top: 0.8rem;
}

.social-intro {
  margin: 0;
  color: var(--text-muted);
  max-width: 72ch;
}

.social-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.social-card {
  border-radius: 16px;
  border: 1px solid rgba(12, 31, 54, 0.1);
  border-top: 4px solid transparent;
  padding: 1.25rem 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(5, 18, 35, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  position: relative;
}
.social-card h3 {
  margin: 0.5rem 0 0.55rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  line-height: 1.22;
  color: var(--ink-deep);
}
.social-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.social-card:hover {
  transform: translateY(-5px);
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  font-family: "Reddit Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.9rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.18s ease;
}
.social-link::after {
  content: "→";
  font-size: 0.9em;
  transition: transform 0.18s ease;
}
.social-link:hover::after {
  transform: translateX(3px);
}

.social-youtube {
  border-top-color: #ff2020;
}
.social-youtube .social-icon {
  background: rgba(255, 32, 32, 0.1);
  color: #cc0000;
}
.social-youtube .social-label {
  background: rgba(255, 32, 32, 0.1);
  color: #cc0000;
}
.social-youtube .social-link {
  color: #cc0000;
}
.social-youtube:hover {
  box-shadow: 0 18px 42px rgba(255, 32, 32, 0.14);
}

.social-facebook {
  border-top-color: #1877f2;
}
.social-facebook .social-icon {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}
.social-facebook .social-label {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}
.social-facebook .social-link {
  color: #1877f2;
}
.social-facebook:hover {
  box-shadow: 0 18px 42px rgba(24, 119, 242, 0.14);
}

.social-linkedin {
  border-top-color: #0a66c2;
}
.social-linkedin .social-icon {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
}
.social-linkedin .social-label {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
}
.social-linkedin .social-link {
  color: #0a66c2;
}
.social-linkedin:hover {
  box-shadow: 0 18px 42px rgba(10, 102, 194, 0.14);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: service-counter;
}

.service-card {
  padding: 1.25rem 1rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(12, 31, 54, 0.1);
  background: linear-gradient(160deg, rgba(22, 168, 199, 0.08) 0%, rgba(255, 255, 255, 0.95) 60%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  counter-increment: service-counter;
}
.service-card::before {
  content: counter(service-counter, decimal-leading-zero);
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 2.4rem;
  color: rgba(22, 168, 199, 0.13);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #16a8c7, #7fd8ea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.service-card h3 {
  font-size: 1.05rem;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 0.55rem;
  color: var(--ink-deep);
  position: relative;
}
.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(22, 168, 199, 0.14);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.product-body {
  margin: 0;
  color: var(--text-muted);
  max-width: 68ch;
}

.product-status {
  margin: 0.8rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Reddit Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: #16a8c7;
  background: rgba(22, 168, 199, 0.1);
  border: 1px solid rgba(22, 168, 199, 0.35);
  border-radius: 999px;
  padding: 0.36rem 0.8rem 0.36rem 0.55rem;
}
.product-status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #16a8c7;
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
}

.product-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.product-facts li {
  color: var(--text-main);
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
}
.product-facts li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #16a8c7;
  font-size: 0.85em;
  top: 0.12em;
}

.campaign {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}
.campaign h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--ink-deep);
  margin-bottom: 0.65rem;
}
.campaign p {
  margin: 0;
  color: var(--text-muted);
  max-width: 62ch;
}

.campaign-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  counter-reset: campaign-counter;
}
.campaign-list li {
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem 0.6rem 2.8rem;
  border: 1px solid rgba(22, 168, 199, 0.2);
  background: rgba(22, 168, 199, 0.06);
  border-radius: 10px;
  position: relative;
  counter-increment: campaign-counter;
}
.campaign-list li::before {
  content: counter(campaign-counter);
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: linear-gradient(135deg, #16a8c7, #7fd8ea);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Reddit Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.contact-copy h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.14;
  margin-bottom: 0.8rem;
  color: var(--ink-deep);
  max-width: 18ch;
}
.contact-copy p {
  margin: 0;
  color: var(--text-muted);
  max-width: 65ch;
}

.contact-card {
  background: linear-gradient(165deg, #081929 0%, #112840 60%, #163450 100%);
  color: #fbfdff;
  border-radius: 18px;
  padding: 1.3rem;
  border: 1px solid rgba(127, 216, 234, 0.22);
  box-shadow: 0 12px 30px rgba(5, 18, 35, 0.22);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #16a8c7, #7fd8ea, #f1a11a);
}
.contact-card .contact-label {
  font-family: "Reddit Mono", monospace;
  font-size: 0.74rem;
  margin-bottom: 0.45rem;
  letter-spacing: 0.08em;
  color: #7fd8ea;
  text-transform: uppercase;
}
.contact-card a {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: #fbfdff;
  text-decoration: none;
  word-break: break-word;
}
.contact-card a:hover {
  color: #ffd68a;
}

.site-footer {
  width: min(1120px, 92%);
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.scroll-top-home {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  border: 1px solid var(--home-control-border);
  border-radius: 999px;
  background: var(--home-control-bg);
  color: var(--home-control-text);
  font-family: "Reddit Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.62rem 0.8rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 30;
}
.scroll-top-home.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-home:hover {
  border-color: rgba(22, 168, 199, 0.55);
}
.scroll-top-home:focus-visible {
  outline: 2px solid var(--home-focus);
  outline-offset: 2px;
}

:root[data-theme=dark] .site-header {
  background: var(--home-header-bg);
  border-color: var(--home-header-border);
  box-shadow: var(--home-header-shadow);
}

:root[data-theme=dark] .site-header .brand-copy p {
  color: var(--text-muted);
}

:root[data-theme=dark] .site-header .brand {
  color: var(--text-main);
}

:root[data-theme=dark] .site-header .site-nav a {
  color: var(--text-main);
}

:root[data-theme=dark] .hero .hero-copy,
:root[data-theme=dark] .social-hub,
:root[data-theme=dark] .services,
:root[data-theme=dark] .product-focus,
:root[data-theme=dark] .campaign,
:root[data-theme=dark] .contact {
  background: rgba(9, 22, 36, 0.88);
  border-color: rgba(127, 216, 234, 0.15);
  box-shadow: 0 16px 36px rgba(2, 8, 14, 0.38);
}

:root[data-theme=dark] .hero h2 {
  background: linear-gradient(135deg, #e7f3ff 30%, #7fd8ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root[data-theme=dark] .eyebrow {
  color: #7fd8ea;
}

:root[data-theme=dark] .service-card {
  border-color: rgba(127, 216, 234, 0.18);
  background: linear-gradient(160deg, rgba(51, 193, 221, 0.12) 0%, rgba(10, 26, 42, 0.92) 60%);
}
:root[data-theme=dark] .service-card::before {
  color: rgba(127, 216, 234, 0.16);
}

:root[data-theme=dark] .social-card {
  background: rgba(9, 23, 38, 0.92);
  border-color: rgba(127, 216, 234, 0.16);
}

:root[data-theme=dark] .social-youtube {
  border-top-color: #ff4444;
}
:root[data-theme=dark] .social-youtube .social-icon {
  background: rgba(255, 68, 68, 0.15);
  color: #ff7878;
}
:root[data-theme=dark] .social-youtube .social-label {
  background: rgba(255, 68, 68, 0.15);
  color: #ff7878;
}
:root[data-theme=dark] .social-youtube .social-link {
  color: #ff7878;
}

:root[data-theme=dark] .social-facebook {
  border-top-color: #4a9eff;
}
:root[data-theme=dark] .social-facebook .social-icon {
  background: rgba(74, 158, 255, 0.15);
  color: #74b8ff;
}
:root[data-theme=dark] .social-facebook .social-label {
  background: rgba(74, 158, 255, 0.15);
  color: #74b8ff;
}
:root[data-theme=dark] .social-facebook .social-link {
  color: #74b8ff;
}

:root[data-theme=dark] .social-linkedin {
  border-top-color: #2d84d4;
}
:root[data-theme=dark] .social-linkedin .social-icon {
  background: rgba(45, 132, 212, 0.15);
  color: #60a8e8;
}
:root[data-theme=dark] .social-linkedin .social-label {
  background: rgba(45, 132, 212, 0.15);
  color: #60a8e8;
}
:root[data-theme=dark] .social-linkedin .social-link {
  color: #60a8e8;
}

:root[data-theme=dark] .hero-panel .panel-copy {
  color: rgba(231, 243, 255, 0.76);
}

:root[data-theme=dark] .hero-panel .panel-metrics span {
  background: rgba(127, 216, 234, 0.1);
  border-color: rgba(127, 216, 234, 0.2);
}

:root[data-theme=dark] .hero-panel .hero-panel-art {
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.7), rgba(17, 52, 81, 0.24));
}

:root[data-theme=dark] .quick-points li {
  border-left-color: var(--warm);
  background: rgba(240, 177, 78, 0.13);
}

:root[data-theme=dark] .cta-outline,
:root[data-theme=dark] .cta-ghost {
  color: var(--text-main);
  background: rgba(16, 37, 57, 0.86);
  border-color: rgba(127, 216, 234, 0.34);
}

:root[data-theme=dark] .product-status {
  color: #7fd8ea;
  background: rgba(51, 193, 221, 0.14);
  border-color: rgba(127, 216, 234, 0.42);
}
:root[data-theme=dark] .product-status::before {
  background: #7fd8ea;
}

:root[data-theme=dark] .product-facts li::before {
  color: #7fd8ea;
}

:root[data-theme=dark] .campaign-list li {
  border-color: rgba(127, 216, 234, 0.2);
  background: rgba(51, 193, 221, 0.1);
}

:root[data-theme=dark] .contact-card {
  background: linear-gradient(165deg, #061018 0%, #0d2236 60%, #122c48 100%);
  border-color: rgba(127, 216, 234, 0.26);
}

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

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

.social-grid .social-card:nth-child(2) {
  animation-delay: 0.08s;
}

.social-grid .social-card:nth-child(3) {
  animation-delay: 0.16s;
}

.card-grid .service-card:nth-child(2) {
  animation-delay: 0.08s;
}

.card-grid .service-card:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes chip-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(241, 161, 26, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(241, 161, 26, 0);
  }
}
@keyframes float-card {
  0%, 100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-7px) rotate(-6deg);
  }
}
@keyframes status-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(22, 168, 199, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(22, 168, 199, 0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .social-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .campaign,
  .contact {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 900px) {
  main {
    margin-top: 1.4rem;
  }
  .hero h2 {
    font-size: 1.75rem;
  }
  .hero .lead {
    font-size: 0.98rem;
  }
  .social-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .social-hub,
  .services,
  .product-focus,
  .campaign,
  .contact,
  .hero .hero-copy,
  .hero-panel {
    border-radius: 16px;
  }
  .hero-panel .panel-topline {
    flex-wrap: wrap;
  }
  .hero-panel h3,
  .hero-panel .panel-copy {
    max-width: none;
  }
  .hero-panel .hero-panel-art {
    min-height: 132px;
  }
  .hero-panel .hero-panel-art img {
    width: 160px;
  }
  .site-footer {
    font-size: 0.78rem;
  }
  .scroll-top-home {
    right: 0.8rem;
    bottom: 0.9rem;
  }
}
.site-footer {
  width: min(1120px, 92%);
  margin: 2.8rem auto 0;
  padding: 2rem;
  border: 1px solid rgba(12, 31, 54, 0.08);
  color: #0c1f36;
  background: linear-gradient(140deg, #f3f9ff 0%, #edf7ff 48%, #f8fbff 100%);
  border-radius: 28px;
  font-size: 1rem;
  font-family: "Reddit Mono", monospace;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem 2rem;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(12, 31, 54, 0.08);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 168, 199, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.site-footer .footer-showcase,
.site-footer .footer-art,
.site-footer .footer-columns {
  position: relative;
  z-index: 1;
}
.site-footer .footer-showcase {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.site-footer .footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 2px solid #2bb3ff;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(12, 31, 54, 0.12);
}
.site-footer .footer-brand .footer-copy h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-family: "Archivo Black", sans-serif;
  color: #0c1f36;
}
.site-footer .footer-brand .footer-copy p {
  margin: 0;
  font-size: 0.92rem;
  color: #2bb3ff;
  font-weight: 600;
}
.site-footer .footer-intro {
  margin: 0;
  max-width: 48ch;
  color: #42607e;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.site-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a8c7, #0d88a4);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 14px 28px rgba(22, 168, 199, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.site-footer .footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(22, 168, 199, 0.3);
}
.site-footer .footer-art {
  min-height: 250px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 38, 61, 0.95), rgba(16, 50, 77, 0.88));
  border: 1px solid rgba(127, 216, 234, 0.22);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.site-footer .footer-art img {
  position: absolute;
  right: 0.8rem;
  bottom: -0.4rem;
  width: min(280px, 80%);
  opacity: 0.92;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
  animation: footer-float 10s ease-in-out infinite;
}
.site-footer .footer-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(127, 216, 234, 0.22);
  background: rgba(127, 216, 234, 0.08);
  animation: footer-orbit 8s ease-in-out infinite;
}
.site-footer .footer-orbit-one {
  width: 110px;
  height: 110px;
  top: -16px;
  right: 24px;
}
.site-footer .footer-orbit-two {
  width: 72px;
  height: 72px;
  left: 22px;
  bottom: 30px;
  animation-delay: 1.2s;
}
.site-footer .footer-columns {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(12, 31, 54, 0.08);
}
.site-footer .footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}
.site-footer .footer-kicker {
  margin: 0 0 0.2rem;
  color: #0d88a4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}
.site-footer .footer-social {
  display: grid;
  gap: 0.48rem;
  min-width: 0;
}
.site-footer .footer-social a {
  color: #0c1f36;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(12, 31, 54, 0.15);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.site-footer .footer-social a:hover {
  color: #0d88a4;
  border-color: rgba(43, 179, 255, 0.5);
  transform: translateX(3px);
  box-shadow: 0 10px 18px rgba(12, 31, 54, 0.08);
}
.site-footer .footer-social a:nth-child(2):hover {
  color: #cc0000;
  border-color: rgba(255, 32, 32, 0.4);
}
.site-footer .footer-social a:nth-child(3):hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.4);
}
.site-footer .footer-social a:nth-child(4):hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.4);
}
.site-footer .footer-links {
  display: grid;
  gap: 0.45rem;
}
.site-footer .footer-links a {
  color: #0c1f36;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer .footer-links a:hover {
  color: #2bb3ff;
  transform: translateX(3px);
}
.site-footer .footer-meta {
  font-size: 0.94rem;
  color: #3a4a5a;
  text-align: left;
}
.site-footer .footer-meta p {
  margin: 0;
  line-height: 1.6;
}
.site-footer .footer-meta a {
  color: #2bb3ff;
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-meta a:hover {
  text-decoration: underline;
}
.site-footer .footer-note {
  color: #5f7b95;
  font-family: "Space Grotesk", sans-serif;
}

:root[data-theme=dark] .site-footer {
  border-color: rgba(127, 216, 234, 0.18);
  background: linear-gradient(140deg, #081b2c 0%, #0d263d 48%, #0b2137 100%);
  color: #e6f3ff;
}
:root[data-theme=dark] .site-footer .footer-brand .footer-copy h2 {
  color: #e6f3ff;
}
:root[data-theme=dark] .site-footer .footer-brand .footer-copy p {
  color: #8edff0;
}
:root[data-theme=dark] .site-footer .footer-intro,
:root[data-theme=dark] .site-footer .footer-note,
:root[data-theme=dark] .site-footer .footer-meta p {
  color: #a9c5dc;
}
:root[data-theme=dark] .site-footer .footer-art {
  background: linear-gradient(145deg, rgba(5, 18, 29, 0.95), rgba(13, 38, 61, 0.88));
  border-color: rgba(127, 216, 234, 0.18);
}
:root[data-theme=dark] .site-footer .footer-columns {
  border-top-color: rgba(127, 216, 234, 0.14);
}
:root[data-theme=dark] .site-footer .footer-kicker {
  color: #8edff0;
}
:root[data-theme=dark] .site-footer .footer-links a,
:root[data-theme=dark] .site-footer .footer-meta,
:root[data-theme=dark] .site-footer .footer-meta a,
:root[data-theme=dark] .site-footer .footer-social a {
  color: #d7ebff;
}
:root[data-theme=dark] .site-footer .footer-social a {
  border-color: rgba(127, 216, 234, 0.3);
  background: rgba(13, 36, 58, 0.85);
}

@keyframes footer-float {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
}
@keyframes footer-orbit {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-8px) scale(1.06);
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 1.35rem 1rem;
    gap: 1rem;
  }
  .site-footer .footer-brand,
  .site-footer .footer-showcase,
  .site-footer .footer-links,
  .site-footer .footer-social,
  .site-footer .footer-meta {
    width: 100%;
    text-align: left;
  }
  .site-footer .footer-brand {
    align-items: flex-start;
  }
  .site-footer .footer-art {
    min-height: 190px;
  }
  .site-footer .footer-art img {
    width: 190px;
  }
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}
.achievements-section {
  background: linear-gradient(135deg, #eaf6ff 0%, #f7faff 100%);
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(12, 31, 54, 0.1);
  margin: 2.5rem auto 2rem;
  padding: 2.5rem 2rem 2rem;
  width: min(900px, 96%);
}
.achievements-section h2 {
  font-family: "Archivo Black", sans-serif;
  color: #0c1f36;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.achievements-section .achievement-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.achievements-section .achievement-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(12, 31, 54, 0.08);
  padding: 1.5rem 1.2rem;
  width: 320px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s;
  border-left: 5px solid #0c1f36;
  margin-bottom: 0.5rem;
}
.achievements-section .achievement-card h3 {
  font-size: 1.18rem;
  color: #0c1f36;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.achievements-section .achievement-card p, .achievements-section .achievement-card ul {
  font-size: 1.05rem;
  color: #3a4a5a;
}
.achievements-section .achievement-card:hover {
  box-shadow: 0 6px 24px 0 rgba(12, 31, 54, 0.16);
  border-left: 5px solid #2bb3ff;
}
.achievements-section .achievement-card::before {
  content: "📈";
  font-size: 1.5rem;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: #2bb3ff;
  opacity: 0.7;
}
.achievements-section .achievement-summary {
  margin-top: 2rem;
  background: #f5faff;
  border-radius: 14px;
  padding: 1.2rem 1rem;
  box-shadow: 0 1px 6px 0 rgba(12, 31, 54, 0.04);
}
.achievements-section .achievement-summary h3 {
  font-size: 1.12rem;
  color: #0c1f36;
  margin-bottom: 0.5rem;
}
.achievements-section .achievement-summary p {
  font-size: 1.02rem;
  color: #3a4a5a;
}
.achievements-section ul {
  margin: 1.2rem 0 1.5rem 1.5rem;
  font-size: 1.1rem;
  color: #1a2a3a;
}
.achievements-section ul li {
  margin-bottom: 0.5rem;
}
.achievements-section p {
  font-size: 1.05rem;
  color: #3a4a5a;
}

.suggestion-section {
  background: rgba(245, 250, 255, 0.98);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(12, 31, 54, 0.04);
  margin: 2rem auto 2.5rem;
  padding: 2rem 2rem 1.5rem;
  width: min(900px, 96%);
}
.suggestion-section h2 {
  font-family: "Archivo Black", sans-serif;
  color: #0c1f36;
  margin-bottom: 0.7rem;
}
.suggestion-section label {
  font-weight: 600;
  color: #1a2a3a;
}
.suggestion-section textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #b5c7d6;
  padding: 0.8rem;
  font-size: 1rem;
  margin: 0.7rem 0 1.2rem;
  resize: vertical;
}
.suggestion-section input[type=submit] {
  background: #0c1f36;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.suggestion-section input[type=submit]:hover {
  background: #1a2a3a;
}
.suggestion-section p {
  color: #3a4a5a;
  font-size: 0.98rem;
  margin-top: 1rem;
}

:root {
  --wm-bg: #f7fafc;
  --wm-bg-a: #f6fbff;
  --wm-bg-b: #eef5fb;
  --wm-bg-c: #edf3f8;
  --wm-surface: rgba(255, 255, 255, 0.9);
  --wm-border: rgba(7, 27, 45, 0.14);
  --wm-text: #10253f;
  --wm-muted: #355070;
  --wm-deep: #071b2d;
  --wm-accent: #0d9fbe;
  --wm-accent-alt: #ef9830;
  --wm-shadow: 0 14px 30px rgba(7, 27, 45, 0.08);
  --wm-table-bg: #ffffff;
  --wm-table-head: rgba(13, 159, 190, 0.09);
  --wm-shape-a: radial-gradient(circle at 30% 30%, rgba(13, 159, 190, 0.32), rgba(13, 159, 190, 0));
  --wm-shape-b: radial-gradient(circle at 45% 45%, rgba(239, 152, 48, 0.2), rgba(239, 152, 48, 0));
  --wm-header-bg: rgba(255, 255, 255, 0.86);
  --wm-control-bg: rgba(255, 255, 255, 0.84);
  --wm-control-border: rgba(7, 27, 45, 0.22);
  --wm-chip-bg: rgba(255, 255, 255, 0.82);
  --wm-hero-shell: linear-gradient(160deg, #0c2238 0%, #12334f 100%);
  --wm-hero-caption: #7fd8ea;
  --wm-carousel-bg: linear-gradient(145deg, rgba(13, 159, 190, 0.12), rgba(239, 152, 48, 0.1));
  --wm-carousel-dot: rgba(7, 27, 45, 0.25);
  --wm-carousel-dot-active: #0d9fbe;
}

:root[data-theme=dark] {
  --wm-bg: #081624;
  --wm-bg-a: #0a1b2d;
  --wm-bg-b: #0f2439;
  --wm-bg-c: #122a41;
  --wm-surface: rgba(12, 28, 44, 0.86);
  --wm-border: rgba(127, 216, 234, 0.22);
  --wm-text: #e6f3ff;
  --wm-muted: #a4c2dc;
  --wm-deep: #f1f8ff;
  --wm-accent: #33c1dd;
  --wm-accent-alt: #f0b14e;
  --wm-shadow: 0 16px 34px rgba(2, 8, 14, 0.45);
  --wm-table-bg: rgba(9, 22, 35, 0.9);
  --wm-table-head: rgba(51, 193, 221, 0.18);
  --wm-shape-a: radial-gradient(circle at 30% 30%, rgba(51, 193, 221, 0.26), rgba(51, 193, 221, 0));
  --wm-shape-b: radial-gradient(circle at 45% 45%, rgba(240, 177, 78, 0.18), rgba(240, 177, 78, 0));
  --wm-header-bg: rgba(8, 23, 37, 0.9);
  --wm-control-bg: rgba(16, 38, 58, 0.9);
  --wm-control-border: rgba(127, 216, 234, 0.36);
  --wm-chip-bg: rgba(14, 33, 51, 0.9);
  --wm-hero-shell: linear-gradient(158deg, #0a2033 0%, #173a56 100%);
  --wm-hero-caption: #9ce6f4;
  --wm-carousel-bg: linear-gradient(145deg, rgba(51, 193, 221, 0.2), rgba(240, 177, 78, 0.14));
  --wm-carousel-dot: rgba(164, 194, 220, 0.45);
  --wm-carousel-dot-active: #33c1dd;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--wm-text);
  background: linear-gradient(165deg, var(--wm-bg-a) 0%, var(--wm-bg-b) 50%, var(--wm-bg-c) 100%);
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  color: var(--wm-deep);
}

p {
  margin: 0;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: -1;
}

.bg-shape-a {
  width: 440px;
  height: 440px;
  top: -160px;
  right: -120px;
  background: var(--wm-shape-a);
}

.bg-shape-b {
  width: 500px;
  height: 500px;
  left: -170px;
  bottom: -190px;
  background: var(--wm-shape-b);
}

.product-header,
main,
.product-footer {
  width: min(1160px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.product-header {
  margin-top: 1.1rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--wm-header-bg);
  border: 1px solid var(--wm-border);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0.8rem;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid rgba(7, 27, 45, 0.18);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem;
}

.brand-overline {
  font-family: "Reddit Mono", monospace;
  font-size: 0.72rem;
  color: var(--wm-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand h1 {
  font-size: 1.18rem;
  line-height: 1.1;
}

.header-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-nav a {
  text-decoration: none;
  color: var(--wm-text);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--wm-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-toggle {
  display: none;
}

.control-btn {
  border: 1px solid var(--wm-control-border);
  border-radius: 999px;
  background: var(--wm-control-bg);
  color: var(--wm-deep);
  font-family: "Reddit Mono", monospace;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.52rem 0.72rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.control-btn:hover {
  border-color: rgba(13, 159, 190, 0.5);
  transform: translateY(-1px);
}

.control-btn:focus-visible {
  outline: 2px solid var(--wm-accent);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.68rem 1.1rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-solid {
  color: #ffffff;
  background: linear-gradient(135deg, var(--wm-accent), #0b84a0);
  box-shadow: 0 10px 20px rgba(13, 159, 190, 0.28);
}

.btn-outline {
  color: var(--wm-deep);
  border: 1px solid rgba(7, 27, 45, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.btn-ghost {
  color: var(--wm-deep);
  border: 1px solid var(--wm-control-border);
  background: var(--wm-chip-bg);
}

main {
  margin-top: 1.9rem;
  margin-bottom: 2.4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.38fr 0.92fr;
  gap: 1rem;
}

.hero-copy,
.hero-panel,
.surface {
  border: 1px solid var(--wm-border);
  border-radius: 22px;
  background: var(--wm-surface);
  box-shadow: var(--wm-shadow);
}

.hero-copy {
  padding: clamp(1.2rem, 2.8vw, 2.4rem);
}

.hero-mark {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.8rem;
}

.hero-mark img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 27, 45, 0.2);
  padding: 0.18rem;
}

.eyebrow {
  font-family: "Reddit Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  color: var(--wm-muted);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.hero-mark .eyebrow {
  margin-bottom: 0.2rem;
}

.hero-mark-note {
  font-size: 0.86rem;
  color: var(--wm-muted);
  font-weight: 600;
}

.hero-copy h2 {
  font-size: clamp(1.58rem, 3.8vw, 2.8rem);
  line-height: 1.14;
  max-width: 23ch;
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  color: var(--wm-muted);
  max-width: 64ch;
}

.badge-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 27, 45, 0.2);
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
  font-family: "Reddit Mono", monospace;
  font-size: 0.71rem;
  letter-spacing: 0.03em;
  color: var(--wm-deep);
  background: rgba(255, 255, 255, 0.78);
}

.badge-warn {
  border-color: rgba(239, 152, 48, 0.52);
  background: rgba(239, 152, 48, 0.17);
}

.badge-live {
  border-color: rgba(13, 159, 190, 0.52);
  background: rgba(13, 159, 190, 0.18);
}

.meta-note {
  margin-top: 0.8rem;
  color: var(--wm-muted);
  font-size: 0.9rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  padding: 0;
  background: var(--wm-hero-shell);
  border-color: rgba(127, 216, 234, 0.26);
  color: #f7fbff;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wm-accent), var(--wm-accent-alt), #7fd8ea);
  z-index: 1;
}

.hero-art {
  border-bottom: 1px solid rgba(127, 216, 234, 0.22);
}

.hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  animation: hero-drift 12s ease-in-out infinite alternate;
}

.hero-panel-body {
  padding: 1.2rem 1.15rem 1.3rem;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.panel-label {
  margin-bottom: 0;
  font-family: "Reddit Mono", monospace;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--wm-hero-caption);
  text-transform: uppercase;
}

.panel-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(127, 216, 234, 0.08);
  border: 1px solid rgba(127, 216, 234, 0.18);
  color: var(--wm-hero-caption);
  font-family: "Reddit Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}
.panel-status-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wm-accent-alt);
  box-shadow: 0 0 0 0 rgba(239, 152, 48, 0.45);
  animation: wm-chip-pulse 2s ease-in-out infinite;
}

.hero-panel h3 {
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.panel-copy {
  color: rgba(247, 251, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.panel-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}
.panel-metrics span {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 216, 234, 0.18);
  background: rgba(127, 216, 234, 0.08);
  font-size: 0.78rem;
  line-height: 1.2;
}

.panel-abstract {
  position: relative;
  min-height: 132px;
  margin-top: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(127, 216, 234, 0.14);
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.46), rgba(17, 52, 81, 0.18));
  overflow: hidden;
}
.panel-abstract img {
  position: absolute;
  right: -18px;
  bottom: -14px;
  width: 170px;
  max-width: none;
  opacity: 0.88;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.24));
  animation: footer-float 10s ease-in-out infinite;
}

.surface {
  margin-top: 1rem;
  padding: clamp(1.1rem, 2.5vw, 1.9rem);
}

.screenshots .meta-note {
  max-width: 72ch;
}

.carousel-shell {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid rgba(7, 27, 45, 0.16);
  border-radius: 18px;
  background: var(--wm-carousel-bg);
  padding: 0.72rem;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  border-radius: 14px;
  border: 1px solid rgba(7, 27, 45, 0.18);
  background: var(--wm-table-bg);
}

.carousel-track {
  display: flex;
  transition: transform 0.58s cubic-bezier(0.22, 0.72, 0.16, 1);
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #0d2035;
}

.carousel-slide figcaption {
  padding: 0.7rem 0.85rem;
  color: var(--wm-text);
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(7, 27, 45, 0.1);
  font-size: 0.9rem;
}

.carousel-control {
  border: 1px solid var(--wm-control-border);
  border-radius: 999px;
  background: var(--wm-control-bg);
  color: var(--wm-deep);
  font-family: "Reddit Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.72rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-control:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 159, 190, 0.56);
}

.carousel-control:focus-visible,
.carousel-dot:focus-visible {
  outline: 2px solid var(--wm-accent);
  outline-offset: 2px;
}

.carousel-dots {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.52rem;
}

.carousel-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 0;
  background: var(--wm-carousel-dot);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--wm-carousel-dot-active);
  transform: scale(1.15);
}

.section-head {
  margin-bottom: 0.95rem;
}

.section-head h2 {
  font-size: clamp(1.2rem, 3.1vw, 2rem);
  max-width: 28ch;
}

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

.capability-card {
  border: 1px solid rgba(7, 27, 45, 0.14);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(13, 159, 190, 0.12), rgba(255, 255, 255, 0.86));
  padding: 0.9rem;
}

.capability-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.6rem;
}

.capability-card ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.48rem;
}

.capability-card li {
  font-size: 0.93rem;
  color: var(--wm-text);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(7, 27, 45, 0.14);
  border-radius: 14px;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--wm-table-bg);
}

.table-wrap th,
.table-wrap td {
  text-align: left;
  padding: 0.7rem;
  border-bottom: 1px solid rgba(7, 27, 45, 0.1);
  font-size: 0.9rem;
}

.table-wrap th {
  font-family: "Reddit Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wm-deep);
  background: var(--wm-table-head);
}

.roadmap-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.62rem;
}

.roadmap-list li {
  color: var(--wm-text);
  font-size: 0.95rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.64rem;
}

.doc-grid a {
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  color: var(--wm-deep);
  border: 1px solid rgba(7, 27, 45, 0.14);
  border-radius: 12px;
  padding: 0.72rem 0.55rem;
  background: rgba(255, 255, 255, 0.9);
}

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

.social-link-card {
  text-align: left;
  display: grid;
  gap: 0.42rem;
  padding: 1rem 0.9rem;
  border-style: solid;
  border-top-width: 4px;
  border-top-color: transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(7, 27, 45, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-link-card strong {
  font-size: 1rem;
  color: var(--wm-deep);
}
.social-link-card span:last-child {
  color: var(--wm-muted);
  font-size: 0.9rem;
}
.social-link-card:hover {
  transform: translateY(-4px);
}

.social-link-card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  font-family: "Reddit Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-youtube {
  border-top-color: #ff2020;
}
.social-youtube .social-link-card-label {
  color: #cc0000;
  background: rgba(255, 32, 32, 0.1);
}
.social-youtube:hover {
  box-shadow: 0 18px 42px rgba(255, 32, 32, 0.12);
}

.social-facebook {
  border-top-color: #1877f2;
}
.social-facebook .social-link-card-label {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
}
.social-facebook:hover {
  box-shadow: 0 18px 42px rgba(24, 119, 242, 0.12);
}

.social-linkedin {
  border-top-color: #0a66c2;
}
.social-linkedin .social-link-card-label {
  color: #0a66c2;
  background: rgba(10, 102, 194, 0.1);
}
.social-linkedin:hover {
  box-shadow: 0 18px 42px rgba(10, 102, 194, 0.12);
}

.doc-grid a:hover {
  border-color: rgba(13, 159, 190, 0.5);
  color: var(--wm-accent);
}

.contact {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 0.8rem;
  align-items: center;
}

.contact p {
  margin-top: 0.62rem;
  color: var(--wm-muted);
}

.support-link {
  justify-self: end;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wm-accent-alt), #d97f15);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font-weight: 700;
  text-align: center;
}

.product-footer {
  margin-bottom: 1.4rem;
  border: 1px solid var(--wm-border);
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(237, 245, 251, 0.94));
  box-shadow: var(--wm-shadow);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem 1.2rem;
  overflow: hidden;
  position: relative;
}

.product-footer-showcase {
  display: grid;
  gap: 0.8rem;
}
.product-footer-showcase h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.8rem);
  line-height: 1.14;
  max-width: 20ch;
}
.product-footer-showcase p:last-child {
  color: var(--wm-muted);
  max-width: 58ch;
}

.footer-kicker {
  margin: 0;
  font-family: "Reddit Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wm-accent);
}

.footer-support-link {
  justify-self: start;
}

.product-footer-art {
  min-height: 220px;
  border-radius: 20px;
  background: linear-gradient(145deg, #0c2238, #143550);
  border: 1px solid rgba(127, 216, 234, 0.2);
  position: relative;
  overflow: hidden;
}
.product-footer-art img {
  position: absolute;
  right: 0.5rem;
  bottom: -0.4rem;
  width: min(250px, 78%);
  opacity: 0.9;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
  animation: footer-float 10s ease-in-out infinite;
}

.product-footer a {
  color: var(--wm-deep);
  font-weight: 700;
  text-decoration: none;
}

.product-footer-links {
  grid-column: 1/-1;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(7, 27, 45, 0.08);
}

.product-footer-links a:hover {
  color: var(--wm-accent);
}

.social-grid a {
  border-style: dashed;
}

.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes hero-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
@keyframes wm-chip-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 152, 48, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(239, 152, 48, 0);
  }
}
@keyframes footer-float {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
}
.scroll-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  border: 1px solid var(--wm-control-border);
  border-radius: 999px;
  background: var(--wm-control-bg);
  color: var(--wm-deep);
  font-family: "Reddit Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.62rem 0.8rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 30;
}

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

.scroll-top:hover {
  border-color: rgba(13, 159, 190, 0.55);
}

@media screen and (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .support-link {
    justify-self: start;
  }
  .carousel-shell {
    grid-template-columns: 1fr;
  }
  .carousel-viewport {
    order: -1;
  }
  .carousel-control {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .product-header {
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }
  .brand {
    width: auto;
    justify-content: flex-start;
    flex: 1 1 auto;
  }
  .header-actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn-ghost {
    display: none;
  }
  .header-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.7rem;
    border: 1px solid rgba(7, 27, 45, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 32px rgba(7, 27, 45, 0.1);
  }
  .header-nav a {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    background: rgba(7, 27, 45, 0.03);
  }
  .product-header.is-nav-open .header-nav {
    display: flex;
  }
  .hero-copy,
  .hero-panel,
  .surface {
    border-radius: 16px;
  }
  .hero-mark {
    align-items: flex-start;
  }
  .hero-mark img {
    width: 44px;
    height: 44px;
  }
  .hero-panel-body {
    padding: 1rem;
  }
  .carousel-shell {
    padding: 0.6rem;
    border-radius: 15px;
  }
  .carousel-slide figcaption {
    font-size: 0.85rem;
  }
  .doc-grid {
    grid-template-columns: 1fr;
  }
  .product-footer {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .product-footer-art {
    min-height: 180px;
  }
  .product-footer-links {
    justify-content: flex-start;
  }
  .scroll-top {
    right: 0.8rem;
    bottom: 0.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art img {
    animation: none;
  }
  .panel-status-chip::before,
  .panel-abstract img,
  .product-footer-art img {
    animation: none;
  }
  .carousel-track {
    transition: none;
  }
}
@media screen and (max-width: 900px) {
  :root[data-theme=dark] .product-header .header-nav {
    background: rgba(8, 23, 37, 0.95);
    border-color: rgba(127, 216, 234, 0.14);
  }
  :root[data-theme=dark] .product-header .header-nav a {
    background: rgba(127, 216, 234, 0.06);
  }
}

:root[data-theme=dark] .social-link-card {
  background: rgba(9, 22, 35, 0.92);
  border-color: rgba(127, 216, 234, 0.16);
}
:root[data-theme=dark] .social-link-card strong {
  color: var(--wm-deep);
}
:root[data-theme=dark] .social-link-card span:last-child {
  color: var(--wm-muted);
}

:root[data-theme=dark] .product-footer {
  background: linear-gradient(140deg, rgba(9, 22, 35, 0.96), rgba(13, 34, 52, 0.94));
  border-color: rgba(127, 216, 234, 0.16);
}

:root[data-theme=dark] .product-footer-links {
  border-top-color: rgba(127, 216, 234, 0.12);
}

/*# sourceMappingURL=main.css.map */
