@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&family=Bebas+Neue&display=swap");

/* ============ TOKENS ============ */
:root {
  --bg: #0a0a0b;
  --bg-alt: #101012;
  --panel: #141416;
  --border: #232326;
  --text: #f4f4f2;
  --text-dim: #9b9b9f;
  --accent: #c8ff3d;
  --accent-dim: #9fd12b;
  --blue: #4f7bff;
  --purple: #9b5cff;
  --radius: 14px;
  --wrap: 1300px;
  --ff-head: "Poppins", sans-serif;
  --ff-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.eyebrow {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title.small {
  max-width: 720px;
}
.section-title.stacked {
  font-size: clamp(40px, 7vw, 64px);

  line-height: 0.95;
}
.section {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--border);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 8px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0b;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(200, 255, 61, 0.55);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--text-dim);
}
.arrow {
  transition: transform 0.18s ease;
}
.btn:hover .arrow {
  transform: translateX(3px);
}
.play-ico {
  font-size: 10px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 25px;
  width: auto;
  display: block;
}
.footer-brand .logo-img {
  height: 35px;
}
.main-nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}
.main-nav a {
  color: var(--text-dim);
  transition: color 0.15s;
}
.main-nav a:hover {
  color: var(--text);
}
.header-cta {
  padding: 11px 18px;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.nav-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  padding: 76px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;

  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 0;
  width: 100%;
  align-items: center;
}
.hero-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-desc {
  max-width: 440px;
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.badge-ico {
  width: 16px;
  height: 16px;

  color: var(--accent);

  stroke-width: 2.3;

  flex-shrink: 0;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badges li span {
  line-height: 1;
}

.hero-side-copy {
  position: absolute;
  right: 0;
  bottom: 8%;
  text-align: right;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--text);
}
.hero-side-strong {
  font-size: 16px;
  margin-top: 6px;
}

/* ============ WHY GRID ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.why-card {
  background: var(--bg);
  padding: 32px 22px;
  transition: background 0.2s ease;
}
.why-card:hover {
  background: var(--panel);
}
.why-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(200, 255, 61, 0.18);
  border-radius: 12px;

  background: rgba(200, 255, 61, 0.05);

  margin-bottom: 22px;

  transition: 0.25s ease;
}

.why-icon svg {
  width: 22px;
  height: 22px;

  stroke: var(--accent);
  stroke-width: 2;
}

.why-card:hover .why-icon {
  border-color: var(--accent);
  background: rgba(200, 255, 61, 0.1);
}
.why-card h3 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.why-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============ JOURNEY ============ */
.journey {
  background: var(--bg-alt);
}
.timeline {
  position: relative;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.timeline-track {
  position: absolute;
  top: 34px;
  left: calc(12.5% - 4px);
  right: calc(12.5% - 4px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--blue) 45%,
    var(--purple) 100%
  );
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.timeline.in-view .timeline-fill {
  transform: scaleX(1);
}

.tl-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tl-dot {
  width: 68px;
  height: 68px;

  border-radius: 50%;

  border: 2px solid var(--border);

  background: var(--bg);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 18px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.tl-dot svg {
  width: 26px;
  height: 26px;

  stroke-width: 2.2;
  stroke: currentColor;
}

.tl-dot--green {
  color: var(--accent);
  border-color: rgba(200, 255, 61, 0.35);
  box-shadow: 0 0 24px rgba(200, 255, 61, 0.15);
}

.tl-dot--blue {
  color: var(--blue);
  border-color: rgba(79, 123, 255, 0.35);
  box-shadow: 0 0 24px rgba(79, 123, 255, 0.15);
}

.tl-dot--purple {
  color: var(--purple);
  border-color: rgba(155, 92, 255, 0.35);
  box-shadow: 0 0 24px rgba(155, 92, 255, 0.15);
}

.tl-step:hover .tl-dot {
  transform: translateY(-4px);
}

.tl-num {
  display: block;
  font-family: var(--ff-head);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.tl-step h3 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tl-step p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 230px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============ BUILT FOR ============ */
.built-for-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}
.built-for-desc {
  max-width: 360px;

  font-size: clamp(15px, 2vw, 18px);

  line-height: 1.7;

  color: var(--text-dim);

  margin-top: 28px;
}

.built-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.bf-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;

  padding: 24px;

  min-height: 140px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;

  transition: 0.25s ease;
}

.bf-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.bf-card span {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.bf-ico {
  width: 28px;
  height: 28px;

  color: var(--accent);

  stroke-width: 2;

  flex-shrink: 0;
}

/* ============ LOOK FOR / IMPACT ============ */
.impact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 64px;
}
.impact-item {
  flex: 1 1 170px;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: var(--bg-alt);

  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

.impact-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.impact-ico {
  width: 22px;
  height: 22px;

  color: var(--accent);

  stroke-width: 2.2;

  flex-shrink: 0;
}

.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.split-card--dark {
  background: #0d0e0a;
}
.split-card h3 {
  font-family: var(--ff-head);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 6px 0 16px;
}
.split-desc {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 26px;
  max-width: 340px;
}
.chart-svg {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 44%;
  opacity: 0.9;
}

/* ============ FAQ ============ */
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.faq-toggle {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-q[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  color: var(--text-dim);
  font-size: 14px;
  max-width: 560px;
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 13.5px;
  margin-top: 14px;
  max-width: 220px;
}
.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-dim);
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ REVEAL ANIMATION ============ */
[data-reveal],
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].in-view,
[data-reveal-group].in-view > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > *:nth-child(1) {
  transition-delay: 0.05s;
}
[data-reveal-group] > *:nth-child(2) {
  transition-delay: 0.1s;
}
[data-reveal-group] > *:nth-child(3) {
  transition-delay: 0.15s;
}
[data-reveal-group] > *:nth-child(4) {
  transition-delay: 0.2s;
}
[data-reveal-group] > *:nth-child(5) {
  transition-delay: 0.25s;
}
[data-reveal-group] > *:nth-child(n + 6) {
  transition-delay: 0.3s;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 7, 7, 0.92) 0%,
    rgba(7, 7, 7, 0.78) 30%,
    rgba(7, 7, 7, 0.42) 55%,
    rgba(7, 7, 7, 0.65) 100%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero.png") center right/cover no-repeat;
  z-index: -2;
}

.hero-side-copy {
  position: absolute;
  right: 5%;
  bottom: 15%;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 76px);

  display: flex;
  align-items: center;

  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .timeline-fill {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

/* ======================================
   COUNTDOWN
====================================== */

.countdown-section{

    padding:55px 0;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

    background:#090909;

}

.countdown-label{

    text-align:center;

    font-family:var(--ff-head);

    font-size:13px;

    font-weight:600;

    letter-spacing:.25em;

    color:var(--text-dim);

    text-transform:uppercase;

    margin-bottom:34px;

}

.countdown-inline{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:72px;

}

.count-item{

    text-align:center;

}

.count-item span{

    display:block;

    font-family:"Bebas Neue", sans-serif;

    font-size:92px;

    font-weight:800;

    line-height:.82;

    letter-spacing:.04em;

    color:var(--accent);

    font-variant-numeric:tabular-nums;

}

.count-item small{

    display:block;

    margin-top:6px;

    font-family:var(--ff-body);

    font-size:11px;

    font-weight:500;

    letter-spacing:.28em;

    text-transform:uppercase;

    color:var(--text-dim);

}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .built-for-inner {
    grid-template-columns: 350px 1fr;
    gap: 48px;
    align-items: start;
  }

  .built-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .built-for-inner {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .built-for-copy {
    max-width: 650px;

    margin: 0 auto;

    text-align: center;
  }

  .built-for-desc {
    max-width: 100%;

    margin: 24px auto 0;
  }

  .built-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .main-nav {
    display: flex;

    position: fixed;

    top: 76px;
    left: 0;
    right: 0;

    flex-direction: column;

    gap: 24px;

    padding: 32px 24px;

    background: #0a0a0b;

    border-bottom: 1px solid var(--border);

    transform: translateY(-120%);

    opacity: 0;

    visibility: hidden;

    transition: 0.35s ease;

    z-index: 1001;
  }

  .main-nav.open {
    transform: translateY(0);

    opacity: 1;

    visibility: visible;
  }

  .main-nav a {
    font-size: 18px;

    color: var(--text);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-side-copy {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-cards {
    grid-template-columns: 1fr;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .built-for-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 700px) {
  .built-for-copy {
    text-align: left;
  }

  .built-for-grid {
    grid-template-columns: 1fr;
  }

  .bf-card {
    min-height: auto;

    padding: 20px;
  }
}

@media (max-width:768px){

    .countdown-section{

        padding:42px 0;

    }

    .countdown-inline{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:28px;

    }

    .count-item span{

        font-size:64px;

    }

    .count-item small{

        font-size:11px;

    }

}

@media (max-width: 560px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 95px;
  }

  .hero-title {
    font-size: 54px;
    line-height: 0.95;
  }

  .hero-desc {
    font-size: 18px;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.72) 30%,
      rgba(0, 0, 0, 0.82) 100%
    );
  }

  .hero::after {
    background-position: 78% center;
    opacity: 0.45;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .impact-item {
    flex: 1 1 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .timeline{

    display:flex;

    flex-direction:column;

    gap:30px;

    margin-top:40px;

}

.timeline-track{

    display:none;

}

.tl-step{

    display:flex;

    align-items:flex-start;

    text-align:left;

    gap:18px;

}

.tl-dot{

    width:58px;

    height:58px;

    margin:0;

    flex-shrink:0;

}

.tl-step h3{

    margin-bottom:8px;

}

.tl-step p{

    margin:0;

    max-width:100%;

}

.tl-num{

    display:none;

}
}

.video-modal {
  position: fixed;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s ease;

  z-index: 9999;
}

.video-modal.open {
  opacity: 1;

  visibility: visible;
}

.video-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.82);

  backdrop-filter: blur(8px);
}

.video-content {
  position: relative;

  width: min(900px, 92vw);

  z-index: 2;
}

.video-wrapper {
  position: relative;

  width: 100%;

  padding-top: 56.25%;

  border-radius: 16px;

  overflow: hidden;

  background: #000;
}

.video-wrapper iframe {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  border: 0;
}

.video-close {
  position: absolute;

  top: -48px;

  right: 0;

  width: 40px;

  height: 40px;

  border: none;

  border-radius: 50%;

  background: #1b1b1b;

  color: #fff;

  cursor: pointer;

  font-size: 18px;
}
