:root {
  --bg: #000;
  --text: #fff;
  --muted: rgba(255,255,255,.72);
  --soft: rgba(255,255,255,.48);
  --line: rgba(255,255,255,.12);
  --line2: rgba(255,255,255,.18);
  --green: #66c266;
  --green-soft: rgba(102,194,102,.14);
  --max: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAVBAR */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  padding: 0 clamp(16px, 4vw, 54px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  background: rgba(0,0,0,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 16px;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  position: relative;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: .22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: .22s ease;
}

.nav-cta:hover {
  background: #fff;
  color: #000;
}

/* GENERAL */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
}

.btn {
  min-height: 48px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  transition: .22s ease;
}

.btn.primary {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.btn.primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn.secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

.btn.secondary:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .55s cubic-bezier(.16,1,.3,1),
    transform .55s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */

.hero {
  position: relative;
  min-height: auto;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;

  padding: 108px 0 54px;

  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(360px,1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);

  border-bottom: 1px solid var(--line);

  background: #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -70px -10vw auto -10vw;
  height: 520px;
  z-index: -1;
  opacity: .9;
  background:
    radial-gradient(circle at 78% 36%, rgba(102,194,102,.12), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.045), transparent 25%);
  pointer-events: none;
}

.hero-orbit {
  display: none;
}

.hero-glow {
  position: absolute;
  right: 12%;
  top: 20%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(102,194,102,.08);
  filter: blur(105px);
  z-index: -1;
}

.hero-inner,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  margin-top: 20px;
  font-size: clamp(46px, 5.7vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 850;
}

.hero-inner h1 span {
  display: block;
  color: rgba(255,255,255,.72);
}

.hero-text {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image img,
.feature-image img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
  box-shadow:
    0 34px 86px rgba(0,0,0,.62),
    0 0 42px rgba(102,194,102,.065);
}

/* FEATURE */

.feature-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 68px 0;

  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(26px, 4.2vw, 54px);

  border-bottom: 1px solid var(--line);
}

.feature-section.reverse {
  grid-template-columns: 1.1fr .9fr;
}

.feature-section.reverse .feature-text {
  order: 2;
}

.feature-section.reverse .feature-image {
  order: 1;
}

.feature-text h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 820;
}

.feature-text p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 560px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.feature-image {
  position: relative;
}

.feature-image::before {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  background: rgba(102,194,102,.105);
  filter: blur(58px);
}

.feature-image img {
  transition: .22s ease;
}

.feature-image img:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.24);
}

/* STRIP */

.premium-strip {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.premium-strip h2 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(36px, 4.8vw, 66px);
  letter-spacing: -.055em;
  line-height: 1;
}

.mini-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}

.mini-grid div {
  padding: 24px;
  min-height: 116px;
  border-right: 1px solid var(--line);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-grid div:last-child {
  border-right: 0;
}

.mini-grid strong {
  font-size: 20px;
  letter-spacing: -.03em;
}

.mini-grid span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.45;
}

/* RELEASE */

.release {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  min-height: auto;
  margin: 0 auto;
  padding: 72px 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.release::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(102,194,102,.08);
  filter: blur(100px);
}

.release img,
.release p,
.release h2,
.release a {
  position: relative;
  z-index: 2;
}

.release img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 26px;
}

.release h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -.06em;
}

.release > p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.release .btn {
  margin-top: 28px;
}

/* FOOTER */

.site-footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 62px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 23px;
}

.footer-brand p {
  margin-top: 7px;
  color: var(--soft);
  font-size: 13px;
}

/* SOCIAL */

.social-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-links a {
  position: relative;
  min-height: 120px;
  padding: 18px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;

  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;

  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  transition: .22s ease;
}

.social-links a::before {
  content: "";
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  display: block;
  border-radius: 12px;
  background-color: rgba(255,255,255,.075);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.social-links a::after {
  content: "↗";
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(255,255,255,.38);
}

.social-links a:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.4' cy='6.6' r='1'/%3E%3C/svg%3E");
}

.social-links a:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 4v10.2a4.4 4.4 0 1 1-3.7-4.35'/%3E%3Cpath d='M14 4c.6 2.65 2.25 4.15 5 4.5'/%3E%3C/svg%3E");
}

.social-links a:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4l16 16'/%3E%3Cpath d='M20 4L4 20'/%3E%3C/svg%3E");
}

.social-links a:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12c0-2.3-.25-4.15-.55-5.05a2.8 2.8 0 0 0-1.95-1.95C17.6 4.75 15.4 4.5 12 4.5s-5.6.25-6.5.5a2.8 2.8 0 0 0-1.95 1.95C3.25 7.85 3 9.7 3 12s.25 4.15.55 5.05A2.8 2.8 0 0 0 5.5 19c.9.25 3.1.5 6.5.5s5.6-.25 6.5-.5a2.8 2.8 0 0 0 1.95-1.95c.3-.9.55-2.75.55-5.05Z'/%3E%3Cpath d='m10 9 5 3-5 3Z'/%3E%3C/svg%3E");
}

.social-links a span {
  color: rgba(255,255,255,.52);
  font-size: 11px;
}

.social-links a strong {
  font-size: 14px;
}

.social-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(102,194,102,.13), transparent 48%),
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.018));
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.42);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

/* MOBILE */

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 96px;
    padding-bottom: 46px;
    gap: 30px;
  }

  .feature-section,
  .feature-section.reverse {
    grid-template-columns: 1fr;
    padding: 52px 0;
    gap: 26px;
  }

  .feature-section.reverse .feature-text,
  .feature-section.reverse .feature-image {
    order: initial;
  }

  .mini-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .mini-grid div:nth-child(2) {
    border-right: 0;
  }

  .mini-grid div:nth-child(1),
  .mini-grid div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .social-links {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 620px) {
  .navbar {
    height: 64px;
    padding: 0 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .nav-cta {
    padding: 8px 13px;
    font-size: 11px;
  }

  .hero,
  .feature-section,
  .premium-strip,
  .release,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 38px;
  }

  .hero-inner h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-inner h1 span {
    color: rgba(255,255,255,.74);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-image img,
  .feature-image img {
    border-radius: 18px;
  }

  .feature-section,
  .feature-section.reverse {
    padding: 42px 0;
  }

  .feature-text h2,
  .premium-strip h2,
  .release h2 {
    font-size: clamp(32px, 10vw, 46px);
    letter-spacing: -.045em;
  }

  .feature-text p:not(.eyebrow) {
    font-size: 15px;
  }

  .premium-strip {
    padding: 46px 0;
  }

  .mini-grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
  }

  .mini-grid div {
    min-height: auto;
    padding: 20px;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-grid div:last-child {
    border-bottom: 0;
  }

  .release {
    padding: 54px 0;
  }

  .release img {
    width: 58px;
    height: 58px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-links a {
    min-height: 105px;
  }

  .footer-brand {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}