:root {
  --brand: #20C9CF;
  --brand-deep: #087F8B;
  --brand-light: #72E2E5;
  --brand-darker: #0E8E96;


  --bg: #20C9CF;
  --text-primary: #062A30;
  --text-secondary: #0A4A52;
  --text-muted: #1A6B74;


  --card-bg: rgba(6, 42, 48, 0.15);
  --card-bg-solid: rgba(6, 42, 48, 0.2);
  --card-border: rgba(6, 42, 48, 0.12);
  --card-border-hover: rgba(6, 42, 48, 0.25);


  --white-glass: rgba(255, 255, 255, 0.2);
  --white-glass-strong: rgba(255, 255, 255, 0.3);
  --white-border: rgba(255, 255, 255, 0.25);
  --white-border-hover: rgba(255, 255, 255, 0.45);
}


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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}


#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.bg-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 127, 139, 0.15) 0%, transparent 70%);
  bottom: 10%;
  left: -80px;
}


.page {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  text-align: center;
}


.logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 60px rgba(255, 255, 255, 0.1);
  animation: fadeInDown 0.8s ease forwards;
  margin-bottom: 12px;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0.7;
  animation: fadeInDown 0.8s ease 0.15s both;
}


.hero-title {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-bold {
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0;
  animation: fadeInDown 0.8s ease 0.45s both;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid var(--text-primary);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: fadeInDown 0.8s ease 0.55s both;
  transition: all 0.3s ease;
  cursor: default;
  background: rgba(6, 42, 48, 0.06);
}

.countdown-badge:hover {
  background: rgba(6, 42, 48, 0.12);
  box-shadow: 0 0 25px rgba(6, 42, 48, 0.08);
  transform: translateY(-1px);
}

.badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


.illustration-section {
  width: 100%;
  padding: 0 0 10px 0;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  animation: fadeIn 1s ease 0.7s both;
}

.route-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
}

.route-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.route-path {
  animation: drawRoute 2s ease forwards;
  stroke-dashoffset: 600;
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}

.courier-img {
  position: absolute;
  width: 55%;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  animation: courierFloat 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes courierFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}


.countdown-section {
  width: 100%;
  padding: 10px 0 20px;
  animation: fadeInDown 0.8s ease 0.9s both;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 68px;
}

.cd-value {
  width: 68px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-glass);
  border: 1px solid var(--white-border);
  border-radius: 14px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cd-value::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.cd-value:hover {
  transform: scale(1.05);
  border-color: var(--white-border-hover);
  background: var(--white-glass-strong);
}

.cd-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cd-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 22px;
  animation: sepPulse 1s ease-in-out infinite;
}

@keyframes sepPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Flip animation */
.cd-value.flip {
  animation: digitFlip 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes digitFlip {
  0% {
    transform: scaleY(1);
  }

  40% {
    transform: scaleY(0.85);
  }

  100% {
    transform: scaleY(1);
  }
}

.features {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 10px 0 30px;
  width: 100%;
  animation: fadeInDown 0.8s ease 1.1s both;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--white-glass);
  border: 1px solid var(--white-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
}

.feature-item:hover .feature-icon-wrap {
  background: var(--white-glass-strong);
  border-color: var(--white-border-hover);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.feature-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}


.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px 24px 20px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.3px;
}



@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .cd-block {
    min-width: 58px;
  }

  .cd-value {
    width: 58px;
    height: 62px;
    font-size: 1.5rem;
    border-radius: 12px;
  }

  .features {
    gap: 24px;
  }

  .feature-icon-wrap {
    width: 46px;
    height: 46px;
  }

  .countdown-badge {
    padding: 10px 22px;
    font-size: 0.78rem;
  }
}

@media (min-width: 768px) {
  .page {
    max-width: 560px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .cd-value {
    width: 80px;
    height: 85px;
    font-size: 2.2rem;
    border-radius: 16px;
  }

  .countdown-grid {
    gap: 14px;
  }

  .features {
    gap: 50px;
  }

  .feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .feature-icon-wrap svg {
    width: 28px;
    height: 28px;
  }
}