/* ══════════════════════════════════════════
   LANDING PAGE
   ══════════════════════════════════════════ */

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
}

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

.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--slate);
  transition: background 0.2s;
}

.nav-hamburger:hover span { background: var(--white); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.98);
  border-bottom: 1px solid var(--navy-border);
  z-index: 99;
  padding: 20px 24px 28px;
  flex-direction: column;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-border);
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--white); }
.nav-drawer a:last-child { border-bottom: none; color: var(--gold); margin-top: 8px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
  gap: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--gold);
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  max-width: 500px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }

.hero-eyebrow-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.hero-headline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-family: 'EB Garamond', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--light-slate);
  line-height: 1.4;
  margin-bottom: 28px;
  font-style: italic;
}

.hero-body {
  font-size: 15px;
  color: var(--slate);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right column: phone + stats */
.hero-right {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

/* ── INLINE PHONE ── */
.hero-phone {
  flex-shrink: 0;
  width: 300px;
  height: 648px;
  background: #0A1628;
  border-radius: 40px;
  position: relative;
  box-shadow:
    0 0 0 1px #1E3050,
    0 0 0 9px #0A0F1A,
    0 0 0 11px #1A2540,
    0 48px 96px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

.phone-island {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0A1628;
}

.phone-status {
  height: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px 7px;
  flex-shrink: 0;
}

.phone-time { font-size: 13px; font-weight: 600; color: #fff; }

.phone-icons { display: flex; gap: 5px; align-items: center; }

.phone-top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 16px 8px;
  flex-shrink: 0;
}

.phone-nav-title {
  font-family: 'EB Garamond', serif;
  font-size: 14px; font-weight: 600;
  color: #D4A843;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.phone-prop-header { padding: 0 16px 10px; flex-shrink: 0; }

.phone-prop-label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: #8892A4; margin-bottom: 4px;
}

.phone-prop-name {
  font-family: 'EB Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: 4px;
}

.phone-prop-meta { display: flex; gap: 8px; align-items: center; }

.phone-badge {
  font-size: 9px; color: #8892A4;
  background: #162035; border: 1px solid #1E3050;
  padding: 2px 7px; letter-spacing: 0.5px;
  text-transform: uppercase;
}

.phone-ticker { font-size: 9px; color: #D4A843; letter-spacing: 0.5px; }

.phone-price-row { padding: 0 16px 10px; flex-shrink: 0; }

.phone-price {
  font-family: 'EB Garamond', serif;
  font-size: 36px; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 4px;
}

.phone-price span {
  font-size: 14px; color: #8892A4;
  font-weight: 300; font-family: 'DM Sans', sans-serif;
}

.phone-change { display: flex; align-items: center; gap: 6px; }

.phone-pill {
  background: rgba(76,175,130,0.15);
  color: #4CAF82;
  font-size: 11px; font-weight: 500;
  padding: 3px 7px;
}

.phone-period { font-size: 11px; color: #8892A4; }

.phone-tabs {
  display: flex; padding: 0 16px;
  flex-shrink: 0; margin-bottom: 1px;
}

.phone-tab {
  flex: 1; text-align: center;
  padding: 5px 0; font-size: 10px;
  color: #8892A4;
  border-bottom: 1.5px solid transparent;
}

.phone-tab.active {
  color: #D4A843;
  border-bottom-color: #D4A843;
  font-weight: 500;
}

.phone-chart {
  flex: 1;
  background: #fff;
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.phone-chart-svg {
  position: absolute;
  left: 36px; top: 0; right: 0; bottom: 26px;
}

.phone-y-axis {
  position: absolute;
  left: 0; top: 0; bottom: 26px;
  width: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0 0;
}

.phone-y-label {
  font-size: 8px; color: #9CA3AF;
  text-align: right; padding-right: 5px;
  font-family: 'DM Sans', sans-serif;
}

.phone-x-axis {
  position: absolute;
  bottom: 0; left: 36px; right: 0;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  border-top: 1px solid #F3F4F6;
}

.phone-x-label {
  font-size: 8px; color: #9CA3AF;
  font-family: 'DM Sans', sans-serif;
}

.phone-tooltip {
  position: absolute;
  top: 10%;
  left: calc(36px + (204/340) * (100% - 36px));
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-tooltip-box {
  background: #0A1628;
  border: 1px solid #1E3050;
  border-radius: 4px;
  padding: 6px 10px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.phone-tooltip-date {
  font-size: 8px; color: #8892A4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.phone-tooltip-price {
  font-family: 'EB Garamond', serif;
  font-size: 15px; font-weight: 700;
  color: #D4A843; line-height: 1;
}

.phone-tooltip-stem {
  width: 1px; height: 10px;
  background: #D4A843; opacity: 0.5;
}

.phone-stats {
  display: flex;
  padding: 8px 16px;
  flex-shrink: 0;
  border-top: 1px solid #1E3050;
}

.phone-stat { flex: 1; text-align: center; position: relative; }

.phone-stat + .phone-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%;
  width: 1px; background: #1E3050;
}

.phone-stat-label {
  font-size: 8px; color: #8892A4;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.phone-stat-val {
  font-family: 'EB Garamond', serif;
  font-size: 13px; font-weight: 600;
  color: #C8D0DC;
}

.phone-actions {
  display: flex; gap: 8px;
  padding: 0 14px 8px;
  flex-shrink: 0;
}

.phone-btn-buy {
  flex: 1; background: #D4A843;
  color: #0A1628; border: none;
  padding: 10px; font-size: 11px;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}

.phone-btn-sell {
  flex: 1; background: transparent;
  color: #C8D0DC; border: 1px solid #1E3050;
  padding: 10px; font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase;
}

.phone-bottom-nav {
  height: 52px;
  background: #0A1628;
  border-top: 1px solid #1E3050;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px 6px;
  flex-shrink: 0;
}

.phone-nav-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px; flex: 1;
}

.phone-nav-label { font-size: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.phone-nav-item.active .phone-nav-label { color: #D4A843; }
.phone-nav-item .phone-nav-label { color: #8892A4; }

/* ── SECTIONS ── */
.section { position: relative; padding: 100px 60px; z-index: 1; }

.section-label {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}

.section-headline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700; line-height: 1.1;
  max-width: 900px; margin-bottom: 16px;
}

.section-headline em { color: var(--gold); font-style: italic; }

/* ── ASSET GRID ── */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
}

.asset-item {
  background: var(--navy-card);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 16px;
  transition: background 0.2s;
}

.asset-item:hover { background: var(--navy-mid); }

.asset-item.gap-item {
  background: rgba(224,85,85,0.06);
  border: 1px solid rgba(224,85,85,0.2);
}

.asset-check {
  font-size: 14px; flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}

.asset-check.yes { color: var(--green); background: rgba(76,175,130,0.1); }
.asset-check.no  { color: var(--red);   background: rgba(224,85,85,0.1); }

.asset-name { font-family: 'EB Garamond', serif; font-size: 20px; font-weight: 500; }
.asset-item.gap-item .asset-name { color: var(--gold); font-weight: 700; }

/* ── HOW SECTION ── */
.how-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.instruments {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 56px;
}

.instrument-card {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  padding: 36px; position: relative;
  overflow: hidden; transition: border-color 0.2s;
}

.instrument-card:hover { border-color: var(--gold); }

.instrument-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
}

.instrument-ticker {
  font-family: 'EB Garamond', serif;
  font-size: 52px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}

.instrument-name {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--slate); margin-bottom: 20px;
}

.instrument-divider { width: 40px; height: 1px; background: var(--navy-border); margin-bottom: 20px; }
.instrument-desc { font-size: 15px; color: var(--light-slate); line-height: 1.7; }

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
}

.step-card {
  background: var(--navy-card);
  padding: 36px 28px; position: relative;
  transition: background 0.2s;
}

.step-card:hover { background: var(--navy-mid); }

.step-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}

.step-number {
  font-family: 'EB Garamond', serif;
  font-size: 48px; font-weight: 800;
  color: rgba(212,168,67,0.15);
  line-height: 1; margin-bottom: 16px;
}

.step-title {
  font-family: 'EB Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}

.step-desc { font-size: 13.5px; color: var(--slate); line-height: 1.75; }

/* ── WHY DIFFERENT ── */
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
}

.diff-card { background: var(--navy-card); padding: 36px 32px; transition: background 0.2s; }
.diff-card:hover { background: var(--navy-mid); }

.diff-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; margin-bottom: 18px;
}

.diff-icon-green { background: rgba(76,175,130,0.12); color: var(--green); }

.diff-title {
  font-family: 'EB Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}

.diff-desc { font-size: 13.5px; color: var(--slate); line-height: 1.75; }

.compare-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

/* ── WAITLIST ── */
.waitlist-section {
  text-align: center; padding: 120px 60px;
  position: relative; overflow: hidden;
}

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

.waitlist-headline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700; line-height: 1.1;
  max-width: 700px; margin: 0 auto 16px;
}

.waitlist-headline em { font-style: italic; color: var(--gold); }

.waitlist-sub {
  font-size: 16px; color: var(--slate);
  max-width: 460px; margin: 0 auto 48px; line-height: 1.7;
}

.waitlist-form {
  display: flex; max-width: 480px; margin: 0 auto 20px;
  border: 1px solid var(--navy-border);
  overflow: hidden; transition: border-color 0.2s;
}

.waitlist-form:focus-within { border-color: var(--gold); }

.waitlist-input {
  flex: 1; background: var(--navy-card);
  border: none; outline: none;
  padding: 14px 20px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
}

.waitlist-input::placeholder { color: var(--slate); }

.waitlist-btn {
  background: var(--gold); color: var(--navy);
  border: none; padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}

.waitlist-btn:hover { background: var(--gold-light); }
.waitlist-disclaimer { font-size: 12px; color: var(--slate); letter-spacing: 0.5px; }

/* ── HERO ANIMATIONS ── */
.hero-eyebrow  { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero-headline { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.hero-sub      { animation: fadeUp 0.6s ease both; animation-delay: 0.3s; }
.hero-body     { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }
.hero-actions  { animation: fadeUp 0.6s ease both; animation-delay: 0.5s; }
.hero-right    { animation: fadeUp 0.6s ease both; animation-delay: 0.65s; }

.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }

  .hero { padding: 110px 32px 60px; gap: 28px; }
  .hero-content { max-width: 400px; }

  .hero-phone { width: 250px; height: 540px; border-radius: 36px; }
  .phone-island { width: 84px; height: 22px; }
  .phone-screen { border-radius: 36px; }

  .section { padding: 80px 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  footer { padding: 32px; }
}

/* Large mobile: 768px */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px 60px;
    min-height: auto;
    gap: 48px;
  }

  .hero-content { max-width: 100%; text-align: center; }
  .hero-body { max-width: 100%; }
  .hero-headline { white-space: normal; }
  .hero-actions { justify-content: center; }

  .hero-right {
    width: 100%;
    justify-content: center;
  }

  .hero-phone { width: 260px; height: 590px; border-radius: 36px; }
  .phone-screen { border-radius: 32px; }
  .phone-status { height: 40px; padding: 0 16px 5px; }
  .phone-top-nav { padding: 2px 12px 6px; }
  .phone-price { font-size: 28px; }
  .phone-price-row { padding: 0 12px 6px; }
  .phone-chart { min-height: 80px; }
  .phone-tooltip-box { padding: 4px 7px; }
  .phone-tooltip-price { font-size: 12px; }
  .phone-tooltip-date { font-size: 7px; }
  .phone-tooltip-stem { height: 7px; }
  .phone-prop-label { font-size: 7px; letter-spacing: 1.5px; }
  .phone-actions { padding: 0 12px 6px; gap: 6px; }
  .phone-btn-buy, .phone-btn-sell { padding: 8px; font-size: 10px; }

  .section { padding: 64px 24px; }

  .asset-grid { grid-template-columns: repeat(2, 1fr); }
  .instruments { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }

  .waitlist-section { padding: 80px 24px; }
  .waitlist-form { max-width: 100%; }

  footer {
    flex-direction: column;
    gap: 20px; text-align: center; padding: 32px 24px;
  }

  .footer-legal { max-width: 100%; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  nav { padding: 14px 20px; }
  .nav-logo-text { font-size: 15px; letter-spacing: 2px; }

  .hero { padding: 90px 20px 50px; gap: 40px; }
  .hero-eyebrow-text { font-size: 9px; letter-spacing: 2.5px; }

  .hero-phone { width: 230px; height: 520px; border-radius: 32px; }
  .phone-screen { border-radius: 28px; }
  .phone-status { height: 34px; padding: 0 14px 4px; }
  .phone-time { font-size: 11px; }
  .phone-top-nav { padding: 1px 10px 4px; }
  .phone-price { font-size: 22px; }
  .phone-price span { font-size: 11px; }
  .phone-price-row { padding: 0 10px 4px; }
  .phone-chart { min-height: 60px; }
  .phone-tooltip-box { padding: 3px 6px; }
  .phone-tooltip-price { font-size: 10px; }
  .phone-tooltip-date { font-size: 6px; }
  .phone-tooltip-stem { height: 5px; }
  .phone-prop-label { font-size: 6px; letter-spacing: 1px; }
  .phone-actions { padding: 0 10px 5px; gap: 5px; }
  .phone-btn-buy, .phone-btn-sell { padding: 6px; font-size: 9px; }

  .section { padding: 56px 20px; }
  .section-headline { font-size: clamp(24px, 6vw, 36px); }

  .asset-grid { grid-template-columns: 1fr; }
  .asset-item { padding: 18px 20px; }

  .instrument-card { padding: 24px; }
  .instrument-ticker { font-size: 40px; }

  .steps-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }

  .waitlist-section { padding: 60px 20px; }

  .waitlist-form {
    flex-direction: column;
    border: none; background: transparent;
  }

  .waitlist-input {
    border: 1px solid var(--navy-border);
    padding: 12px 16px;
  }

  .waitlist-btn { padding: 12px; width: 100%; }

  footer { padding: 28px 20px; }
}
