:root {
  --bg-body: #050507;
  --bg-surface: #0e0e11;
  --bg-surface-2: #16161c;
  --bg-surface-3: #202028;
  --primary: #a8c7fa;
  --primary-dim: #2d3a52;
  --accent: #d0bcff;
  --success: #9cd67d;
  --text-main: #f2f2f2;
  --text-muted: #a1a1aa;
  --text-dim: #52525b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.15);
  --container-width: 1200px;
  --header-height: 80px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --font-head: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: #fff0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-anchor: none;
}
body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
.hero-content,
.bento-card,
.cta-container {
  opacity: 0;
  transform: translateY(30px);
}
.phone-composition {
  opacity: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-content.in-view,
.cta-container.in-view {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0, 1) forwards;
}
.bento-card.in-view {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0, 1);
}
.phone-composition.in-view {
  animation:
    fadeIn 0.8s cubic-bezier(0.2, 0, 0, 1) forwards,
    phone-rotate 14s ease-in-out infinite;
}
.background-effect {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #050507;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  animation: aurora-move 20s infinite alternate;
  border-radius: 50%;
}
.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--primary-dim);
  animation-duration: 25s;
}
.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: rgb(118 58 209 / 0.15);
  animation-duration: 30s;
  animation-delay: -5s;
}
.blob-3 {
  top: 40%;
  left: 40%;
  width: 40vw;
  height: 40vw;
  background: rgb(56 189 248 / 0.1);
  animation-duration: 20s;
  animation-delay: -10s;
}
@keyframes aurora-move {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10%, 15%) scale(1.1);
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgb(5 5 7 / 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  transition: background 0.3s;
  box-shadow: inset 0 -1px 0 0 rgb(255 255 255 / 0.02);
}
.nav-wrapper {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
}
.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.logo-gradient {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-mask-image: url(images/logo.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(images/logo.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-item:hover {
  color: var(--text-main);
}
.nav-separator {
  width: 1px;
  height: 24px;
  background: var(--border-subtle);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  font-size: 24px;
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 15px rgb(168 199 250 / 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgb(168 199 250 / 0.5);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.btn-primary {
  background: var(--primary);
  color: #000;
  border: 1px solid #fff0;
  animation: pulse-glow 3s infinite;
}
.btn-primary:hover {
  background: #c4d9fc;
  transform: translateY(-1px);
}
.btn-outlined {
  background: #fff0;
  border: 1px solid var(--border-highlight);
  color: var(--text-main);
}
.btn-outlined:hover {
  border-color: var(--text-muted);
  background: rgb(255 255 255 / 0.05);
}
.btn-subtle {
  background: rgb(255 255 255 / 0.05);
  color: var(--text-main);
}
.btn-subtle:hover {
  background: rgb(255 255 255 / 0.1);
}
.hero {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgb(168 199 250 / 0.1);
  border: 1px solid rgb(168 199 250 / 0.2);
  border-radius: var(--radius-pill);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  transition: all 0.2s;
}
.pill-badge:hover {
  background: rgb(168 199 250 / 0.15);
  border-color: var(--primary);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
}
.badge-arrow {
  font-size: 16px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.text-gradient {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #fff0;
  filter: drop-shadow(0 0 2em rgb(168 199 250 / 0.2));
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-main);
}
.stat-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}
.features {
  padding: 0rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 24px;
}
.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.bento-card.interactive {
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.bento-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
}
.span-2 {
  grid-column: span 2;
}
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bento-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 8px;
  margin-top: auto;
}
.bento-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.primary-box {
  background: rgb(168 199 250 / 0.1);
  color: var(--primary);
}
.secondary-box {
  background: rgb(208 188 255 / 0.1);
  color: var(--accent);
}
.tertiary-box {
  background: rgb(255 183 77 / 0.1);
  color: #ffb74d;
}
.surface-box {
  background: var(--bg-surface-3);
  color: var(--text-muted);
}
.success-box {
  background: rgb(156 214 125 / 0.1);
  color: var(--success);
}
.highlight-card {
  background: linear-gradient(135deg, var(--bg-surface), #1a1d24);
}
.integration-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: nowrap;
}
.glass-tile {
  width: 52px;
  height: 52px;
  background: rgb(255 255 255 / 0.03);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  cursor: help;
}
.glass-tile img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease;
}
.glass-tile:hover {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(168 199 250 / 0.3);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.3);
}
.glass-tile:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.footer-legal {
  text-align: right;
}
.legal-tiny {
  font-size: 0.65rem;
  opacity: 0.5;
  margin-top: 4px;
}
.row-content {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.text-side {
  flex: 1;
}
.visual-side {
  flex: 1;
}
.code-snippet {
  background: #000;
  padding: 24px;
  border-radius: 16px;
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  border: 1px solid var(--border-subtle);
  width: 100%;
}
.code-header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.material-symbols-rounded {
  display: inline-block;
  width: 1em;
  height: 1em;
  overflow: hidden;
  white-space: nowrap;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  contain: layout;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}
.code-line {
  display: block;
  margin-bottom: 4px;
}
.c-k {
  color: #cf8e6d;
}
.c-v {
  color: #2aacb8;
}
.c-c {
  color: #5f826b;
}
.community-section {
  padding: 6rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.community-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.community-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  background: var(--bg-surface-2);
}
.community-card .material-symbols-rounded {
  font-size: 48px;
  color: var(--primary);
}
.community-card h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 0;
}
.community-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}
.cta-section {
  padding: 0rem 2rem 4rem;
}
.cta-container {
  max-width: var(--container-width);
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-surface-2), var(--bg-surface));
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid var(--border-highlight);
}
.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-family: var(--font-head);
}
.cta-content p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-inverse {
  background: var(--text-main);
  color: var(--bg-body);
}
.btn-inverse:hover {
  background: #fff;
  transform: scale(1.02);
}
.meta-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 2rem 30px;
  background: var(--bg-body);
}
.footer-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 960px) {
  .hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 8.5rem;
    padding-bottom: 0rem;
    gap: 0;
    height: auto;
    min-height: auto;
    overflow-x: clip;
  }
  .hero-visual {
    order: -1;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
    z-index: 1;
    mask-image: none;
  }
  .gallery-container {
    max-width: 300px;
  }
  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    gap: 24px;
    padding-top: 0;
  }
  .hero-headline {
    font-size: 2.75rem;
    line-height: 1.1;
  }
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
    margin: 0 auto;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    margin-top: 10px;
  }
  .features {
    padding: 2rem 0 0rem;
    overflow: hidden;
  }
  .section-head {
    padding: 0 2rem;
    margin-bottom: 30px;
    margin-top: 40px;
  }
  .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px 40px;
    overflow-x: visible;
  }
  .bento-grid::-webkit-scrollbar {
    display: none;
  }
  .bento-card {
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 20px 16px;
    height: auto;
    word-wrap: break-word;
  }
  .span-2 {
    grid-column: span 2;
  }
  .bento-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .bento-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .icon-box span {
    font-size: 20px;
  }
  .integration-badges {
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
  }
  .glass-tile {
    width: 48px;
    height: 48px;
  }
  .glass-tile img {
    width: 24px;
    height: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-legal {
    text-align: center;
  }
  .row-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .visual-side {
    width: 100%;
  }
  .community-section {
    padding: 0 2rem 4rem;
  }
  .community-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 1.5rem;
  }
  .community-card {
    padding: 20px 10px;
  }
  .community-card h4 {
    font-size: 1rem;
  }
  .community-card .material-symbols-rounded {
    font-size: 32px;
  }
  .cta-section {
    padding: 0 1rem 4rem;
  }
  .cta-container {
    padding: 2.5rem 1.5rem;
    margin-top: 1rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgb(5 5 7 / 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
  }
  .nav-menu .nav-item {
    font-size: 1.25rem;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.02em;
  }
  .nav-menu .nav-item:active {
    transform: scale(0.95);
    color: var(--primary);
  }
  .nav-separator {
    display: none;
  }
  .nav-menu .btn {
    width: auto;
    min-width: 200px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  .nav-menu .btn:active {
    transform: scale(0.95);
  }
  .pill-badge {
    margin-top: 24px;
  }
  .info-dock {
    display: none;
  }
}
.bento-card:nth-child(1) {
  order: 1;
}
.bento-card:nth-child(3) {
  order: 2;
}
.bento-card:nth-child(4) {
  order: 3;
}
.bento-card:nth-child(2) {
  order: 4;
}
.bento-card:nth-child(5) {
  order: 5;
}
.phone-composition {
  position: relative;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
  z-index: 10;
}
.phone-frame {
  position: relative;
  width: 300px;
  height: 630px;
  background: #080808;
  border-radius: 44px;
  box-shadow:
    inset 0 0 0 2px #333,
    inset 0 0 0 6px #000,
    0 25px 60px rgb(0 0 0 / 0.5);
  z-index: 10;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.phone-buttons {
  position: absolute;
  right: -2px;
  top: 140px;
  width: 3px;
  height: 90px;
  background: #333;
  border-radius: 0 4px 4px 0;
}
.phone-buttons::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  width: 3px;
  height: 35px;
  background: #333;
  border-radius: 0 4px 4px 0;
}
.phone-screen {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #000;
  border-radius: 34px;
  overflow: hidden;
  z-index: 1;
}
.phone-camera {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #000;
  border-radius: 50%;
  z-index: 20;
}
.phone-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgb(255 255 255 / 0.05) 40%,
    transparent 41%
  );
  pointer-events: none;
  z-index: 15;
}
#main-slider {
  width: 100%;
  height: 100%;
}
#main-slider .splide__track {
  width: 100%;
  height: 100%;
}
#main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.info-dock {
  margin-top: 1em;
  width: 420px;
  max-width: 90vw;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(14 14 17 / 0.6);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 20px;
  padding: 0 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.3);
  z-index: 5;
  box-sizing: border-box;
}
.dock-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  transition: opacity 0.3s ease;
}
.dock-divider {
  width: 1px;
  height: 32px;
  background: rgb(255 255 255 / 0.1);
  margin: 0 20px;
  flex-shrink: 0;
}
.dock-icon {
  width: 40px;
  height: 40px;
  background: rgb(168 199 250 / 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8c7fa;
  flex-shrink: 0;
}
.dock-icon span {
  font-size: 22px;
}
.dock-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}
.dock-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dock-desc {
  font-size: 0.75rem;
  color: #a1a1aa;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#thumbnail-slider {
  margin-top: 20px;
  width: 100%;
  padding: 0 10px;
}
#thumbnail-slider .splide__slide {
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.3;
  border: 2px solid #fff0;
  cursor: pointer;
  transition: all 0.2s;
}
#thumbnail-slider .splide__slide.is-active {
  opacity: 1;
  border-color: var(--primary);
}
#thumbnail-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .hero-content, 
  .hero-content.in-view {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-content > *:not(.pill-badge) {
    opacity: 0;
    transform: translateY(30px);
  }
  .hero-content.in-view > *:not(.pill-badge) {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0, 1) forwards;
  }
  .hero-content.in-view > h1 { animation-delay: 0.1s; }
  .hero-content.in-view > p { animation-delay: 0.2s; }
  .hero-content.in-view > .hero-actions { animation-delay: 0.3s; }
  .hero-content.in-view > .hero-stats { animation-delay: 0.4s; }
}
.badge-text:empty {
  display: inline-block;
  width: 80px;
  height: 1em;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

