:root {
  --bg-color: #111111;
  --text-color: #ffffff;
  --muted-color: #a0a0a0;
  --card-color: #1a1a1a;
  --primary-color: #ffae00;
  --primary-hover: #ff8c00;
}

* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

.bg {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation .2s infinite;
  opacity: .9;
  visibility: visible;
  z-index: 0;
  pointer-events: none;
}

@keyframes bg-animation {
  0% { transform: translate(0,0) }
  10% { transform: translate(-5%,-5%) }
  20% { transform: translate(-10%,5%) }
  30% { transform: translate(5%,-10%) }
  40% { transform: translate(-5%,15%) }
  50% { transform: translate(-10%,5%) }
  60% { transform: translate(15%,0) }
  70% { transform: translate(0,10%) }
  80% { transform: translate(-15%,0) }
  90% { transform: translate(10%,5%) }
  100% { transform: translate(5%,0) }
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}


header {
  position: sticky;
  top: 0;
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(8px);
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

header, .hero, .section, footer {
  position: relative;
  z-index: 1;
}

.brand img {
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

@media (max-width: 720px) {
  .brand img {
    height: 28px;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a {
  color: var(--muted-color);
  transition: 0.25s;
}

.menu a:hover {
  color: var(--text-color);
}

.nav a.active {
  background: rgba(255, 174, 0, 0.12);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 174, 0, 0.3);
  color: var(--primary-color);
}


.cta {
  padding: 10px 14px;
  background: var(--primary-color);
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(255, 174, 0, 0.26);
  transition: 0.3s;
}

.cta:hover {
  background: var(--primary-hover);
}


.hero {
  padding: 72px 0 48px;
  text-align: center;
}

h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 16px 0 12px;
  font-weight: 800;
}

p.lead {
  color: var(--muted-color);
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .hero {
    padding: 55px 0 48px;
  }
  
  h1 {
    font-size: 36px;
  }
}


.badge {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-color);
  color: var(--text-color);
  white-space: nowrap;
}

.muted {
  color: var(--muted-color);
  font-size: 13px;
}


.section {
  padding: 72px 0;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 12px;
}


.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.feature {
  background: var(--card-color);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
  transform: scale(1.01) translateY(-4px);
  border-color: var(--primary-color);
  background: rgba(255, 174, 0, 0.04);
}

.feature h3 {
  margin: 8px 0 6px;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 0, 0.10),
    rgba(255, 174, 0, 0.25)
  );
  display: grid;
  place-items: center;
}


footer {
  background: var(--card-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-color);
  padding: 40px 0;
  font-size: 14px;
}



footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}


@media (max-width: 680px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

#site-footer {
  background: var(--card-color);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 0 25px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: var(--muted-color);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  filter: invert(1);
  border-radius: 6px;
}

.footer-brand strong {
  font-size: 18px;
  color: var(--text-color);
}

.footer-text {
  max-width: 520px;
  font-size: 14px;
  opacity: .8;
  line-height: 1.6;
  margin: 0 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--primary-color);
  font-size: 20px;
  transition: 0.25s;
}

.footer-links a:hover {
  color: var(--primary-hover);
  transform: translateY(-3px);
}

#site-footer hr {
  width: 80%;
  margin: 8px auto;
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-size: 13px;
  opacity: .6;
}

/* Header Fixed Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

body {
  padding-top: 60px;
}

.nav {
  position: relative;
  z-index: 1001;
}

.bg {
  z-index: -1000 !important;
}

/* Rotating Words Loader Animation */
.loader-card {
  /* color used to softly clip top and bottom of the .words container */
  --bg-color: #111111;
  background-color: transparent;
  padding: 0;
  border-radius: 1.25rem;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.loader {
  color: rgb(124, 124, 124);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 42px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 50px;
  padding: 0;
  display: flex;
  border-radius: 8px;
  gap: 0;
  align-items: center;
}

.words {
  overflow: hidden;
  position: relative;
  height: 60px;
  width: auto;
  display: block;
  font-family: "Lobster", sans-serif;
}

.words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  z-index: 20;
  pointer-events: none;
}

.word {
  display: block;
  height: 100%;
  padding: 0 8px;
  color: #ffae00;
  animation: spin_4991 4s infinite;
  white-space: nowrap;
  line-height: 50px;
  font-size: 42px;
  font-weight: 700;
}

@keyframes spin_4991 {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}

