﻿:root {
  --bg: #020403;
  --text: #f7f7f7;
  --muted: #9da39d;
  --green: #75e33e;
  --line: rgba(117, 227, 62, 0.22);
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #020403 0%, #050806 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 24px 6vw;
  background: rgba(2, 4, 3, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand {
  letter-spacing: 0.22em;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 42px;
  margin-left: auto;
  color: #d8ddd8;
  font-size: 14px;
}

.nav-cta,
.button,
.waitlist-form button {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--green), #4fbf2f);
  color: #061006;
  font-weight: 800;
}

.nav-cta {
  margin-left: 32px;
  background: transparent;
  color: var(--text);
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6vw 48px;
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: 72px 0 116px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  opacity: 1;
  text-shadow: 0 0 12px rgba(117, 227, 62, 0.32);
font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(44px, 5.5vw, 76px);
}

h1 span {
  color: var(--green);
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.hero-text,
.section-text,
.community p,
.waitlist p,
footer {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 520px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  max-width: 520px;
  margin-top: 32px;
  color: var(--muted);
}

.free-badge {
  flex-basis: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.checkmark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(117, 227, 62, 0.55);
  border-radius: 50%;
  background: rgba(117, 227, 62, 0.11);
  color: var(--green);
  font-size: 13px;
  line-height: 1;
}

.hero-chart {
  position: absolute;
  right: -10vw;
  top: 42px;
  width: min(930px, 65vw);
  height: 520px;
  overflow: hidden;
  opacity: 1;
  z-index: 1;
  background: transparent;
}

.hero-chart img {
  position: relative;
  z-index: 1;
  width: 200%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  transform: translateX(-50%);
  filter: brightness(0.84) saturate(0.9);
}

.screens {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: -18px;
}

.phone-shot {
  aspect-ratio: 9 / 17.4;
  overflow: hidden;
  border-radius: 34px;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.phone-shot img {
  width: 100%;
  height: 111%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.section,
.community,
.waitlist {
  margin-top: 58px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(17, 22, 18, 0.9),
    rgba(8, 12, 10, 0.9)
  );
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.asset-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(117, 227, 62, 0.12),
    transparent 40%
  );
}

.asset-icon {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  color: var(--text);
  opacity: 0.92;
}

.material-symbols-rounded.asset-icon {
  font-family: "Material Symbols Rounded";
  font-size: 42px;
  font-weight: normal;
  line-height: 1;
  font-variation-settings: "FILL" 0;
}

.asset-icon-img {
  filter: brightness(0) invert(1);
}

.asset-card strong {
  font-size: 19px;
  white-space: nowrap;
}

.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.vote-box {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
}

.vote-box strong {
  color: var(--text);
}

.status {
  color: var(--green);
  font-weight: 800;
}

.waitlist {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 28px;
  align-items: center;
  border-color: var(--line);
}

.waitlist img,
footer img {
  width: 64px;
  border-radius: 14px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
}

.waitlist-form input {
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 14px 0 0 14px;
  background: #080b09;
  color: var(--text);
  font-size: 16px;
}

.waitlist-form button {
  border-radius: 0 14px 14px 0;
  cursor: pointer;
}

#waitlist-message {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  font-size: 14px;
}

.waitlist-consent {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.privacy-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 0;
}

.privacy-section {
  padding: 42px;
}

.privacy-updated {
  margin-top: 16px;
  color: var(--muted);
}

.privacy-content {
  margin-top: 40px;
}

.privacy-content h2 {
  margin: 42px 0 14px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.privacy-content p {
  color: var(--muted);
  line-height: 1.8;
}

.privacy-content a {
  color: var(--green);
  font-weight: 800;
}

footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 6vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

footer div {
  display: grid;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links a {
  color: var(--text);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-links p {
  margin: 0;
}
.community .eyebrow {
  color: var(--green);
  border-color: rgba(117, 227, 62, 0.5);
  background: rgba(117, 227, 62, 0.045);
  text-shadow: 0 0 12px rgba(117, 227, 62, 0.45);
}

