:root {
  --ski-bg: #0b111a;
  --ski-bg-light: #16202e;
  --ski-text: #f8fafc;
  --ski-text-muted: #94a3b8;
  --ski-accent: #38bdf8;
  --ski-primary: #0284c7;
  --ski-primary-push: #0ea5e9;
  --ski-glow-1: rgba(2, 132, 199, 0.35);
  --ski-glow-2: rgba(56, 189, 248, 0.25);
  --ski-glow-3: rgba(125, 211, 252, 0.15);
}

body.sk-public-body {
  background: var(--ski-bg);
  color: var(--ski-text);
  overflow-x: hidden;
  --sk-text: var(--ski-text);
  --sk-text-secondary: var(--ski-text-muted);
}

.sk-site-header {
  background: rgba(11, 17, 26, 0.6) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.sk-site-header.is-scrolled {
  background: rgba(11, 17, 26, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.sk-mobile-menu-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.sk-logo,
.sk-nav-link {
  color: #fff !important;
}

.sk-nav-link:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  color: var(--ski-accent) !important;
}

.sk-footer {
  background: #080c13 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.sk-footer-copy {
  color: var(--ski-text-muted) !important;
}

.ski-wrapper {
  position: relative;
  overflow: hidden;
}

.ski-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.6;
  animation: skiDrift 25s infinite alternate ease-in-out;
  pointer-events: none;
}

.ski-glow-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  min-width: 500px;
  background: var(--ski-glow-1);
}

.ski-glow-2 {
  top: 40%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  min-width: 400px;
  background: var(--ski-glow-2);
  animation-delay: -5s;
  animation-duration: 20s;
}

.ski-glow-3 {
  bottom: -5%;
  left: 10%;
  width: 60vw;
  height: 30vw;
  min-width: 600px;
  background: var(--ski-glow-3);
  animation-delay: -10s;
  animation-duration: 30s;
}

@keyframes skiDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, -5%) scale(1.05);
  }
  100% {
    transform: translate(-5%, 8%) scale(0.95);
  }
}

.ski-hero {
  position: relative;
  z-index: 1;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 10vw, 8rem);
  text-align: center;
}

.ski-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ski-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--ski-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.ski-title {
  font-family: var(--sk-font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.4rem;
}

.ski-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ski-text-muted);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.ski-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ski-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.25s cubic-bezier(0.2, 0.65, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

.ski-btn-primary {
  background: var(--ski-primary);
  color: #fff;
  border: 1px solid var(--ski-primary-push);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.25);
}

.ski-btn-primary:hover {
  background: var(--ski-primary-push);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(2, 132, 199, 0.4);
  color: #fff;
}

.ski-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(10px);
}

.ski-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.ski-hero-visual {
  margin-top: 5.5rem;
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ski-glass-card {
  position: absolute;
  background: rgba(20, 28, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.65, 0.3, 1),
    border-color 0.4s ease;
}

.ski-glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  z-index: 10;
}

.ski-hover-shift-x:hover {
  transform: translateX(4px);
}

.ski-hover-lift-sm:hover {
  transform: translateY(-2px);
}

.ski-icon {
  font-size: 1.6rem;
  color: var(--ski-accent);
  background: rgba(56, 189, 248, 0.15);
  padding: 0.8rem;
  border-radius: 12px;
}

.ski-icon-lg {
  font-size: 2.8rem;
  color: #fff;
  filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.6));
  margin-bottom: 0.5rem;
}

.ski-glass-info {
  text-align: left;
}

.ski-glass-info span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ski-text-muted);
  font-weight: 700;
}

.ski-glass-info strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.2rem;
}

.ski-glass-left {
  left: 8%;
  top: 25%;
  transform: rotate(-4deg);
}

.ski-glass-right {
  right: 8%;
  bottom: 15%;
  transform: rotate(5deg);
}

.ski-glass-center {
  z-index: 2;
  flex-direction: column;
  text-align: center;
  padding: 2.5rem;
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow:
    0 0 50px rgba(56, 189, 248, 0.15),
    inset 0 0 30px rgba(56, 189, 248, 0.05);
}

.ski-glass-center span {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ski-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ski-glass-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  border: 2px solid var(--ski-accent);
  opacity: 0;
  animation: pulseBorder 3s infinite;
  pointer-events: none;
}

@keyframes pulseBorder {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.ski-split-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
  z-index: 1;
}

.ski-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.ski-split-reverse .ski-split-text {
  order: 2;
}

.ski-label {
  color: var(--ski-accent);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  display: block;
}

.ski-h2 {
  font-family: var(--sk-font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.ski-p {
  color: var(--ski-text-muted);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.2rem;
}

.ski-floating-ui {
  background: rgba(15, 23, 33, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.65, 0.3, 1),
    box-shadow 0.6s ease;
  backdrop-filter: blur(12px);
}

.ski-split-reverse .ski-floating-ui {
  transform: perspective(1200px) rotateY(8deg) rotateX(4deg);
}

.ski-floating-ui:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.7);
}

.ski-dashboard-mock {
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: 16px;
  margin-top: 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.ski-mock-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.ski-chart-mock {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 220px;
  padding-top: 2rem;
}

.ski-bar {
  flex: 1;
  background: rgba(2, 132, 199, 0.6);
  border-radius: 8px 8px 0 0;
  transition: height 1s ease;
}

.ski-bar:hover {
  filter: brightness(1.2);
}

.ski-metrics-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.25);
  padding: 5rem 0;
  z-index: 1;
  position: relative;
}

.ski-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.ski-metric h3 {
  font-family: var(--sk-font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.ski-metric p {
  color: var(--ski-text-muted);
  font-size: 1.1rem;
}

.ski-cta {
  padding: clamp(6rem, 10vw, 10rem) 0;
  position: relative;
  z-index: 1;
}

.ski-cta-box {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(15, 23, 33, 0.9));
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 36px;
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  box-shadow: 0 0 60px rgba(2, 132, 199, 0.15);
  backdrop-filter: blur(10px);
}

.ski-cta-box h2 {
  font-family: var(--sk-font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.ski-cta-box p {
  color: var(--ski-text-muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .ski-split-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .ski-split-reverse .ski-split-text {
    order: 0;
  }
}

@media (max-width: 767px) {
  .ski-glass-left,
  .ski-glass-right {
    display: none;
  }

  .ski-hero-visual {
    height: auto;
    margin-top: 4rem;
  }

  .ski-glass-center {
    position: relative;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
  }

  .ski-metrics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.sk-menu-open .sk-nav {
    background: rgba(20, 28, 40, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.ski-features-grid-section {
  padding: 4rem 0;
}

.ski-center-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ski-center-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--ski-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ski-feature-blocks {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ski-feature-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--ski-radius);
  transition: all 0.3s ease;
}

.ski-feature-block:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.ski-feature-block h4 {
  font-size: 1.1rem;
  color: var(--ski-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ski-feature-block h4 i {
  color: #3b82f6;
  font-size: 1.25rem;
}

.ski-feature-block p {
  color: var(--ski-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.ski-feature-blocks h4 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.ski-feature-blocks h4 i {
  color: #3b82f6 !important;
}

.ski-feature-blocks p {
  color: #a1a1aa !important;
}

.ski-hero {
  padding-top: 10rem !important;
  padding-bottom: 8rem !important;
  position: relative;
  overflow: hidden;
}

.ski-title {
  font-size: 4.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0px 4px 40px rgba(255, 255, 255, 0.1);
}

.ski-subtitle {
  font-size: 1.25rem !important;
  max-width: 600px;
  line-height: 1.7 !important;
  color: #94a3b8 !important;
}

.ski-badge {
  background: rgba(56, 189, 248, 0.1) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  color: #38bdf8 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.ski-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38bdf8;
  animation: ski-pulse-dot 2s infinite;
}

@keyframes ski-pulse-dot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.ski-hero-visual {
  position: relative;
  perspective: 1000px;
}

.ski-glass-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease !important;
}

.ski-glass-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
}

.ski-glass-card i {
  font-size: 1.8rem !important;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ski-glass-card .ski-glass-info strong {
  display: block;
  font-size: 1.25rem !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.ski-split-section {
  padding: 8rem 0 !important;
  position: relative;
}

.ski-h2 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
}

.ski-floating-ui {
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 80px rgba(56, 189, 248, 0.05) !important;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(2deg) rotateY(-5deg) translateZ(0);
  transition: all 0.5s ease;
}

.ski-floating-ui::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
}

.ski-floating-ui:hover {
  transform: rotateX(0deg) rotateY(0deg) translateZ(20px) translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.3),
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(56, 189, 248, 0.2) !important;
}

.ski-dashboard-mock {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  margin-top: 2rem !important;
}

.ski-mock-stat {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  position: relative;
  overflow: hidden;
}

.ski-mock-stat.full-width {
  grid-column: 1 / -1;
}

.ski-mock-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 40%;
  background: #38bdf8;
  border-radius: 2px;
}

.ski-mock-stat:nth-child(2)::after {
  background: #818cf8;
  width: 60%;
}

.ski-mock-stat:nth-child(3)::after {
  background: #34d399;
  width: 80%;
}

.ski-mock-val {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  font-family: "Fraunces", serif !important;
}

.ski-mock-label {
  font-size: 0.875rem !important;
  color: #94a3b8 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ski-chart-mock {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  height: 150px !important;
  gap: 8px !important;
  margin-top: 2rem !important;
  padding: 1rem !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.02) !important;
}

.ski-bar {
  flex: 1 !important;
  background: linear-gradient(180deg, #38bdf8 0%, rgba(56, 189, 248, 0.1) 100%) !important;
  border-radius: 4px 4px 0 0 !important;
  width: auto !important;
  margin: 0 !important;
  position: relative;
  animation: ski-bar-grow 1.5s ease-out forwards;
}

.ski-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #fff;
  border-radius: 4px 4px 0 0;
  opacity: 0.5;
}

@keyframes ski-bar-grow {
  from {
    height: 0 !important;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sk-site-header {
  background: rgba(11, 17, 26, 0.2) !important;
}

.sk-btn--primary,
.ski-btn-primary {
  background: linear-gradient(135deg, #0284c7, #38bdf8) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4) !important;
  color: #fff !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.sk-btn--primary:hover,
.ski-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6) !important;
  background: linear-gradient(135deg, #0369a1, #0ea5e9) !important;
}

.ski-bg-glow {
  filter: blur(100px) !important;
  border-radius: 50% !important;
  position: absolute !important;
  z-index: -1 !important;
  animation: blob-float 10s infinite alternate ease-in-out !important;
}

.ski-glow-1 {
  background: rgba(56, 189, 248, 0.15) !important;
  width: 500px !important;
  height: 500px !important;
  top: -100px !important;
  left: -100px !important;
}

.ski-glow-2 {
  background: rgba(129, 140, 248, 0.15) !important;
  width: 600px !important;
  height: 600px !important;
  bottom: 20% !important;
  right: -100px !important;
  animation-delay: -5s !important;
}

.ski-glow-3 {
  background: rgba(52, 211, 153, 0.1) !important;
  width: 400px !important;
  height: 400px !important;
  top: 40% !important;
  left: 30% !important;
  animation-delay: -2s !important;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -50px) scale(1.1);
  }
}

.ski-hero-visual {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 2rem !important;
  margin-top: 4rem !important;
}

.ski-glass-card {
  flex: 1 !important;
  max-width: 300px !important;
}

.ski-glass-card:nth-child(2) {
  transform: translateY(-20px) !important;
}

.ski-btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.ski-btn-outline:hover {
  border-color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.1) !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4) !important;
  transform: translateY(-2px) !important;
}

.ski-cta-box {
  background: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem !important;
  border-radius: 2rem !important;
}

.ski-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.ski-cta-box h2 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

:root {
  --ent-bg: #09090b;
  --ent-border: rgba(255, 255, 255, 0.1);
  --ent-border-hover: rgba(255, 255, 255, 0.2);
  --ent-surface: rgba(24, 24, 27, 0.7);
  --ent-accent: #3b82f6;
}

body.sk-public-body {
  background: var(--ent-bg) !important;
  font-family:
    "Manrope",
    -apple-system,
    sans-serif !important;
}

.ski-bg-glow {
  opacity: 0.3 !important;
  filter: blur(120px) !important;
}

.ski-glow-1 {
  background: rgba(59, 130, 246, 0.15) !important;
}

.ski-glow-2 {
  background: rgba(168, 85, 247, 0.1) !important;
}

.ski-glow-3 {
  display: none !important;
}

.ski-hero {
  padding-top: 12rem !important;
  padding-bottom: 6rem !important;
  text-align: center !important;
}

.ski-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ski-badge {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--ent-border) !important;
  color: #a1a1aa !important;
  box-shadow: none !important;
  font-family: monospace;
  font-size: 0.75rem !important;
  margin-bottom: 2rem !important;
}

.ski-badge::before {
  display: none !important;
}

.ski-title {
  font-size: 5rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  max-width: 900px;
  margin: 0 auto 1.5rem auto !important;
}

.ski-subtitle {
  font-size: 1.125rem !important;
  color: #a1a1aa !important;
  max-width: 650px !important;
  margin: 0 auto 2.5rem auto !important;
}

.ski-actions {
  justify-content: center !important;
  margin-top: 0 !important;
}

.ski-btn-primary {
  background: #fff !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1) !important;
  border-radius: 6px !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
}

.ski-btn-primary:hover {
  background: #f4f4f5 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

.ski-btn-outline {
  border: 1px solid var(--ent-border) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 6px !important;
  font-size: 0.95rem !important;
  padding: 0.75rem 1.5rem !important;
}

.ski-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--ent-border-hover) !important;
  box-shadow: none !important;
}

.ski-hero-visual {
  gap: 1rem !important;
  margin-top: 5rem !important;
  perspective: none !important;
}

.ski-glass-card {
  background: var(--ent-surface) !important;
  border: 1px solid var(--ent-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
  padding: 1.25rem 1.5rem !important;
  transition: transform 0.2s ease !important;
}

.ski-glass-card:nth-child(2) {
  transform: translateY(-10px) !important;
}

.ski-glass-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--ent-border-hover) !important;
}

.ski-glass-card i {
  background: #fff !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 1.4rem !important;
}

.ski-glass-card .ski-glass-info span {
  font-size: 0.75rem !important;
  text-transform: uppercase;
  color: #71717a !important;
  letter-spacing: 0.05em;
}

.ski-glass-card .ski-glass-info strong {
  font-size: 1.1rem !important;
  font-family: "Manrope", sans-serif !important;
}

.ski-floating-ui {
  transform: none !important;
  background: #000 !important;
  border: 1px solid #27272a !important;
  border-radius: 8px !important;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05) !important;
  padding: 1px !important;
}

.ski-floating-ui::before {
  display: none !important;
}

.ski-floating-ui:hover {
  transform: none !important;
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.1) !important;
}

.ski-floating-ui::after {
  content: "•••";
  display: block;
  font-size: 1.5rem;
  line-height: 0.5;
  color: #3f3f46;
  position: absolute;
  top: 1rem;
  left: 1rem;
  letter-spacing: 2px;
}

.ski-floating-ui > div {
  background: #09090b !important;
  border-radius: 8px !important;
  padding: 3rem 2rem 2rem 2rem !important;
  height: 100%;
}

.ski-label {
  color: #fff !important;
  background: #27272a !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 4px !important;
  font-size: 0.75rem !important;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: monospace;
}

.ski-split-section .ski-h2 {
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
}

.ski-feature-blocks {
  gap: 1rem !important;
}

.ski-feature-block {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid var(--ent-border) !important;
  border-radius: 0 !important;
  padding: 0.5rem 0 0.5rem 1.5rem !important;
}

.ski-feature-block:hover {
  border-color: #fff !important;
  transform: none !important;
}

.ski-feature-block h4 {
  font-size: 1.1rem !important;
  color: #fff !important;
}

.ski-feature-block h4 i {
  color: #a1a1aa !important;
}

.ski-feature-block p {
  color: #a1a1aa !important;
}

.ski-metrics-bar {
  border-top: 1px solid var(--ent-border) !important;
  border-bottom: 1px solid var(--ent-border) !important;
  background: rgba(0, 0, 0, 0.2) !important;
  padding: 3rem 0 !important;
}

.ski-metric h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #fff !important;
}

.ski-metric p {
  color: #a1a1aa !important;
  font-size: 0.9rem !important;
}

.ski-cta-box {
  background: #18181b !important;
  border: 1px solid #27272a !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ski-cta-box::before {
  display: none !important;
}

.ski-cta-box h2 {
  background: #fff !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 2.5rem !important;
}

.ski-wrapper {
  max-width: 100vw;
  overflow: hidden;
  background: #09090b !important;
}

.ski-center-text p {
  color: #a1a1aa !important;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
  font-size: 1.1rem !important;
}

.ski-badge {
  border-radius: 9999px !important;
  letter-spacing: 0.1em;
  background: transparent !important;
}

.ski-mock-stat {
  background: #000 !important;
  border-radius: 6px !important;
}

.ski-mock-stat::after {
  display: none !important;
}

.ski-chart-mock {
  background: transparent !important;
  border: none !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.ski-bar {
  background: #3f3f46 !important;
  transition: background 0.3s ease;
  border-radius: 2px !important;
  margin: 0 4px !important;
}

.ski-bar::after {
  display: none !important;
}

.ski-bar:hover {
  background: #d4d4d8 !important;
}

.ski-metrics-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  text-align: center !important;
}

@media (prefers-color-scheme: light) {
  :root {
    --ent-bg: #fcfcfc;
    --ent-border: #e4e4e7;
    --ent-border-hover: #d4d4d8;
    --ent-surface: rgba(255, 255, 255, 0.8);
  }

  body.sk-public-body,
  .ski-wrapper {
    background: #fcfcfc !important;
    color: #09090b !important;
    --sk-text: #09090b;
    --sk-text-secondary: #52525b;
  }

  .ski-title {
    background: linear-gradient(180deg, #09090b 0%, #52525b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  .ski-subtitle,
  .ski-p,
  .ski-center-text p,
  .ski-feature-block p,
  .ski-metric p,
  .ski-cta-box p {
    color: #52525b !important;
  }

  .ski-h2 {
    color: #09090b !important;
  }

  .ski-badge {
    border-color: #e4e4e7 !important;
    color: #52525b !important;
    background: #fff !important;
  }

  .ski-btn-primary,
  .sk-btn--primary {
    background: #09090b !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
  }

  .ski-btn-primary:hover,
  .sk-btn--primary:hover {
    background: #27272a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
  }

  .ski-btn-outline {
    border-color: #e4e4e7 !important;
    background: #fff !important;
    color: #09090b !important;
  }

  .ski-btn-outline:hover {
    background: #f4f4f5 !important;
    border-color: #d4d4d8 !important;
  }

  .ski-glass-card {
    background: #ffffff !important;
    border-color: #e4e4e7 !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05) !important;
  }

  .ski-glass-card .ski-glass-info strong {
    color: #09090b !important;
  }

  .ski-glass-card i {
    background: #09090b !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  .ski-floating-ui {
    background: #e4e4e7 !important;
    border-color: #d4d4d8 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1) !important;
  }

  .ski-floating-ui > div {
    background: #ffffff !important;
  }

  .ski-floating-ui::after {
    color: #a1a1aa !important;
  }

  .ski-mock-stat {
    background: #fcfcfc !important;
    border: 1px solid #f4f4f5 !important;
  }

  .ski-mock-val {
    color: #09090b !important;
  }

  .ski-mock-label {
    color: #71717a !important;
  }

  .ski-floating-ui.ski-ui-analytics > div > div:first-child > div {
    border-color: #e4e4e7 !important;
    background: #fcfcfc !important;
  }

  .ski-floating-ui.ski-ui-analytics > div > div:first-child > div > div:nth-child(1) {
    color: #71717a !important;
  }

  .ski-floating-ui.ski-ui-analytics > div > div:first-child > div > div:nth-child(2) {
    color: #09090b !important;
  }

  .ski-chart-mock {
    border-top-color: #e4e4e7 !important;
    border-bottom-color: #e4e4e7 !important;
  }

  .ski-bar {
    background: #e4e4e7 !important;
  }

  .ski-bar:hover {
    background: #a1a1aa !important;
  }

  .ski-label {
    background: #f4f4f5 !important;
    color: #09090b !important;
    border: 1px solid #e4e4e7 !important;
  }

  .ski-feature-block {
    border-left-color: #e4e4e7 !important;
  }

  .ski-feature-block:hover {
    border-color: #09090b !important;
    background: #fcfcfc !important;
  }

  .ski-feature-block h4 {
    color: #09090b !important;
  }

  .ski-feature-block h4 i {
    color: #52525b !important;
  }

  .ski-metrics-bar {
    background: #ffffff !important;
    border-color: #e4e4e7 !important;
  }

  .ski-metric h3 {
    color: #09090b !important;
  }

  .ski-cta-box {
    background: #ffffff !important;
    border-color: #e4e4e7 !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05) !important;
  }

  .ski-cta-box h2 {
    background: linear-gradient(180deg, #09090b 0%, #52525b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  .sk-site-header {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid #e4e4e7 !important;
  }

  .sk-nav-link {
    color: #52525b !important;
  }

  .sk-nav-link:hover {
    color: #09090b !important;
  }

  .sk-logo {
    color: #09090b !important;
  }
}

:root {
  --ent-bg: #f3f4f6;
  --ent-border: #e5e7eb;
  --ent-border-hover: #d1d5db;
  --ent-surface: #ffffff;
  --sk-brand: #1f4e6b;
  --sk-brand-hover: #183c53;
  --sk-brand-light: #dbe8f0;
}

body.sk-public-body,
.ski-wrapper {
  background: var(--ent-bg) !important;
  color: #111827 !important;
  --sk-text: #111827;
  --sk-text-secondary: #6b7280;
}

.ski-bg-glow {
  display: none !important;
}

.ski-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: #111827 !important;
}

.ski-subtitle,
.ski-p,
.ski-center-text p,
.ski-feature-block p,
.ski-metric p,
.ski-cta-box p {
  color: #4b5563 !important;
}

.ski-h2 {
  color: #111827 !important;
}

.ski-badge {
  border-color: var(--sk-brand-light) !important;
  color: var(--sk-brand) !important;
  background: var(--ent-surface) !important;
  font-weight: 700 !important;
}

.ski-btn-primary,
.sk-btn--primary {
  background: var(--sk-brand) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(31, 78, 107, 0.2) !important;
}

.ski-btn-primary:hover,
.sk-btn--primary:hover {
  background: var(--sk-brand-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(31, 78, 107, 0.3) !important;
}

.ski-btn-outline {
  border-color: var(--ent-border) !important;
  background: var(--ent-surface) !important;
  color: #111827 !important;
}

.ski-btn-outline:hover {
  background: #f9fafb !important;
  border-color: var(--ent-border-hover) !important;
}

.ski-glass-card {
  background: var(--ent-surface) !important;
  border-color: var(--ent-border) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

.ski-glass-card .ski-glass-info strong {
  color: #111827 !important;
}

.ski-glass-card i {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: var(--sk-brand) !important;
}

.ski-floating-ui {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1) !important;
}

.ski-floating-ui > div {
  background: var(--ent-surface) !important;
}

.ski-floating-ui::after {
  color: #9ca3af !important;
}

.ski-mock-stat {
  background: #f9fafb !important;
  border: 1px solid var(--ent-border) !important;
}

.ski-mock-val {
  color: var(--sk-brand) !important;
}

.ski-mock-label {
  color: #6b7280 !important;
}

.ski-floating-ui.ski-ui-analytics > div > div:first-child > div {
  border-color: var(--ent-border) !important;
  background: #f9fafb !important;
}

.ski-floating-ui.ski-ui-analytics > div > div:first-child > div > div:nth-child(1) {
  color: #6b7280 !important;
}

.ski-floating-ui.ski-ui-analytics > div > div:first-child > div > div:nth-child(2) {
  color: var(--sk-brand) !important;
}

.ski-chart-mock {
  border-top-color: var(--ent-border) !important;
  border-bottom-color: var(--ent-border) !important;
}

.ski-bar {
  background: var(--sk-brand-light) !important;
}

.ski-bar:hover {
  background: var(--sk-brand) !important;
}

.ski-label {
  background: var(--sk-brand-light) !important;
  color: var(--sk-brand) !important;
  border: 1px solid var(--sk-brand-light) !important;
  font-weight: 700 !important;
}

.ski-feature-block {
  border-left-color: var(--ent-border) !important;
}

.ski-feature-block:hover {
  border-color: var(--sk-brand) !important;
  background: var(--ent-surface) !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.ski-feature-block h4 {
  color: #111827 !important;
}

.ski-feature-block h4 i {
  color: var(--sk-brand) !important;
}

.ski-metrics-bar {
  background: var(--ent-surface) !important;
  border-color: var(--ent-border) !important;
}

.ski-metric h3 {
  color: #111827 !important;
}

.ski-cta-box {
  background: var(--ent-surface) !important;
  border-color: var(--ent-border) !important;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.06) !important;
}

.ski-cta-box h2 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: #111827 !important;
}

.sk-site-header {
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid var(--ent-border) !important;
}

.sk-nav-link {
  color: #4b5563 !important;
}

.sk-nav-link:hover {
  color: var(--sk-brand) !important;
}

.sk-logo {
  color: var(--sk-brand) !important;
}

.sk-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  border-color: var(--ent-border) !important;
}

.sk-site-header.is-scrolled .sk-logo {
  color: var(--sk-brand) !important;
}

.sk-site-header.is-scrolled .sk-nav-link {
  color: #111827 !important;
}

.sk-mobile-menu-btn {
  color: #111827 !important;
  background: #ffffff !important;
  border-color: var(--ent-border) !important;
}

.sk-footer {
  background: var(--ent-bg) !important;
  border-top: 1px solid var(--ent-border) !important;
}

.sk-footer .sk-logo {
  color: var(--sk-brand) !important;
}

.sk-footer-copy {
  color: var(--sk-text-secondary) !important;
}

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

.ski-floating-ui {
  animation: subtle-float 6s ease-in-out infinite;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease !important;
}

.ski-floating-ui:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 30px 50px -12px rgba(31, 78, 107, 0.15) !important;
}

.ski-feature-block {
  transition: all 0.3s ease !important;
  cursor: default;
}

.ski-feature-block:hover {
  transform: translateX(5px) !important;
}

.ski-mock-stat {
  transition: all 0.3s ease;
}

.ski-mock-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border-color: var(--sk-brand-light) !important;
}
