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

body {
  font-family: 'Oswald', sans-serif;
  background: #050607;
  color: white;
}

/* BACKGROUND */
.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,106,0,0.18), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.04), transparent 50%);
  z-index: 0;
}

/* NAV */
.nav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 18px 8%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 38px;
}

.cta {
  background: #ff6a00;
  padding: 10px 16px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 140px 8% 90px;
  gap: 60px;
}

.kicker {
  color: #ff6a00;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.05;
  margin: 18px 0;
}

.hero-promise {
  margin-top: 10px;
  color: #ff6a00;
  font-weight: 600;
  font-size: 1rem;
}

.sub {
  color: #a8a8a8;
  max-width: 540px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 12px;
  margin: 25px 0;
}

.primary {
  background: #ff6a00;
  padding: 12px 18px;
  text-decoration: none;
  color: white;
  display: inline-block;
}

.secondary {
  border: 1px solid #333;
  padding: 12px 18px;
  text-decoration: none;
  color: white;
  display: inline-block;
}

/* META */
.meta {
  display: flex;
  gap: 18px;
  color: #9a9a9a;
  font-size: 14px;
}

/* HERO PRODUCT */
.hero-right {
  position: relative;
  height: 420px;
}

.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,106,0,0.25), transparent);
  filter: blur(50px);
  top: 60px;
  left: 40px;
}

.logo-float {
  position: absolute;
  width: 80px;
  top: 0;
  left: 140px;
}

.tub {
  position: absolute;
  width: 250px;
  top: 90px;
  left: 70px;
  z-index: 2;
}

.packet {
  position: absolute;
  width: 120px;
  bottom: 40px;
  right: 0;
  transform: rotate(-10deg);
}

/* SECTIONS */
section {
  padding: 100px 8%;
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

p {
  color: #b0b0b0;
  line-height: 1.6;
}

.accent {
  color: #ff6a00;
}

/* PRODUCT GRID */
.grid {
  display: flex;
  gap: 30px;
}

.card {
  background: #11151c;
  padding: 22px;
  text-align: center;
  flex: 1;
}

.card img {
  width: 170px;
}

/* INVESTOR GRID */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid3 div {
  background: #0f1218;
  padding: 20px;
  border: 1px solid #222;
}

/* SIGNUP */
.signup {
  text-align: center;
}

.signup input {
  padding: 12px;
  width: 260px;
  border: none;
}

.signup button {
  padding: 12px 16px;
  background: #ff6a00;
  border: none;
  color: white;
  cursor: pointer;
}

.survey-btn {
  margin-top: 12px;
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid #333;
  color: white;
  text-decoration: none;
}

.signup-note {
  margin-top: 10px;
  font-size: 13px;
  color: #888;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}