* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.5;
    height: 100%;
}
nav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}


.btnContainer {
    display: flex;
    gap: 16px;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.btn {
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 150ms linear;
}

.docsBtn {
    background-color: black;
    color: white;
}

.docsBtn:hover {
    background-color: #666;
}

.hIWBtn {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.hIWBtn:hover {
    background-color: #cecece;
}

footer {
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 40px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.counter-section {
  margin: 2rem 0 0;
  text-align: left;
}

.counter-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flip-counter {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
  align-items: center;
}

.flip-digit {
  position: relative;
  width: 28px;
  height: 40px;
  perspective: 300px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

/*.flip-card.flipping {
  animation: flip 0.6s ease-in-out;
}*/

@keyframes flip {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(-90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

.flip-card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  background: #fff;
  color: #1a1a1a;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/*.flip-card-face::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #f0f0f0;
  transform: translateY(-50%);
}*/

.flip-card-back {
  transform: rotateX(180deg);
}

.flip-separator {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 40px;
  color: #666;
  margin: 0 2px;
}