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

:root {
  --orange: #FF5F15;
  --mint: #00FF9D;
  --gold: #FFD700;
  --red: #FF3131;
  --black: #080808;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --surface-3: #222222;
  --grey: #aaa;
  --light-grey: #ddd;
  --white: #ffffff;
  --font-display: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.15s ease;
}

body.ready {
  opacity: 1;
}

/* ─── Utility ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--orange);
  color: var(--orange);
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.nav-logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.1s !important;
}

.nav-cta:hover {
  background: #ff7a3d !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ─── Hero ─── */
.hero {
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 95, 21, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-text h1 .highlight {
  color: var(--orange);
}

.hero-text p {
  font-size: 18px;
  color: var(--grey);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Email form */
.email-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin-bottom: 16px;
}

.email-form input {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.email-form input::placeholder { color: #777; }
.email-form input:focus { border-color: var(--orange); }

.email-form button {
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}

.email-form button:hover {
  background: #ff7a3d;
  transform: translateY(-1px);
}

.email-hint {
  font-size: 13px;
  color: #999;
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #161616;
  border-radius: 40px;
  border: 3px solid #333;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(255, 95, 21, 0.1),
    0 0 160px rgba(255, 95, 21, 0.05);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 14px 16px 16px;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.phone-greeting {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.phone-subtitle {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 16px;
}

.phone-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.phone-card-label {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.phone-card-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.phone-card-value.mint { color: var(--mint); }
.phone-card-value.gold { color: var(--gold); }

.phone-chat {
  margin-top: auto;
  background: #1e1e1e;
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.phone-chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}

.phone-chat span {
  font-size: 13px;
  color: #888;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Floating elements around phone */
.float-card {
  position: absolute;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

.float-card.card-1 {
  top: 80px;
  right: 10px;
  animation-delay: 0s;
}

.float-card.card-2 {
  bottom: 140px;
  left: 10px;
  animation-delay: 2s;
}

.float-card.card-3 {
  bottom: 60px;
  right: 0px;
  animation-delay: 4s;
}

.float-card .fc-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Marquee ─── */
.marquee-section {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Trades ─── */
.trades {
  padding: 100px 0;
}

.trades-header {
  text-align: center;
  margin-bottom: 60px;
}

.trades-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.trades-header p {
  color: var(--grey);
  font-size: 16px;
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trade-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.trade-card:hover {
  border-color: rgba(255, 95, 21, 0.3);
  transform: translateY(-2px);
}

.trade-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.trade-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trade-card p {
  font-size: 12px;
  color: var(--grey);
}

/* ─── MTD Banner ─── */
.mtd-banner {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mtd-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--surface);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 48px;
  transition: border-color 0.3s;
}

.mtd-inner:hover {
  border-color: rgba(255, 95, 21, 0.3);
}

.mtd-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255, 95, 21, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.mtd-content h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.mtd-content p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.mtd-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}

.mtd-link:hover {
  gap: 12px;
}

@media (max-width: 640px) {
  .mtd-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 140px 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 95, 21, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-inner h2 .mint { color: var(--mint); }

.cta-inner p {
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form-full {
  max-width: 480px;
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form-row {
  display: flex;
  gap: 12px;
}

.cta-form-full input,
.cta-form-full select {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.cta-form-full select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.cta-form-full select option {
  background: #1a1a1a;
  color: var(--white);
}

.cta-form-full input::placeholder { color: #777; }
.cta-form-full select:invalid { color: #777; }
.cta-form-full input:focus,
.cta-form-full select:focus { border-color: var(--orange); }

.cta-form-full button {
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.cta-form-full button:hover {
  background: #ff7a3d;
  transform: translateY(-1px);
}

.cta-hint {
  font-size: 13px;
  color: #999;
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #888;
}

.footer-bottom a {
  color: #888;
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--white); }

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hero content visible immediately — no reveal jank above the fold */
.hero .reveal,
.hero .badge,
.hero h1,
.hero p,
.hero .email-form,
.hero .email-hint,
.hero-visual {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-text p { margin-left: auto; margin-right: auto; }

  .email-form {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual { order: -1; }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .float-card { display: none; }

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

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

  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .nav-links.show {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

@media (max-width: 500px) {
  .email-form, .cta-form-row {
    flex-direction: column;
  }

  .email-form button, .cta-form-full button {
    width: 100%;
  }

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

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

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

@media (max-width: 380px) {
  .trades-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }

  .container {
    padding: 0 16px;
  }
}
