@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

:root {
  --bg: #07111f;
  --bg2: #0c1a2e;
  --card: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --accent: #f5b301;
  --accent-dark: #d89400;
  --blue: #123e7c;
  --green: #15803d;
  --line: #e5e7eb;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-card: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #f4f6f9;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ── HEADER ─────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1;
}
.brand span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.header-cta { font-size: 0.875rem; padding: 9px 20px; min-height: 38px; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(110deg, rgba(7,17,31,0.97) 0%, rgba(7,17,31,0.84) 52%, rgba(7,17,31,0.32) 100%),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=90") center/cover no-repeat;
  overflow: hidden;
}

.hero-layout {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-content { max-width: 700px; color: white; }

.hero-badge {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  color: white;
}
.hero-h1 em { color: var(--accent); font-style: normal; }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats strip */
.hero-stats {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.hero-stats-inner {
  display: flex;
  align-items: center;
}
.stat { flex: 1; text-align: center; color: white; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-lg { min-height: 56px; padding: 14px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245,179,1,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.38);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
}

.btn-ghost {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: #b0b8c4;
  transform: translateY(-1px);
}

.btn-success {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn-success:hover {
  background: #166534;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(21,128,61,0.3);
}

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 84px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: 0.03em;
  line-height: 0.93;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

/* ── INTRO SPLIT ─────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  line-height: 0.93;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: var(--ink);
}
.intro-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 24px;
}

.check-list { list-style: none; margin-bottom: 30px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ── DEMO BANNER ─────────────────────────────── */
.demo-banner { background: var(--bg); }
.demo-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-banner .eyebrow { margin-bottom: 8px; }
.demo-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  letter-spacing: 0.03em;
  color: white;
  line-height: 0.95;
  margin-bottom: 12px;
}
.demo-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.65;
}

/* ── TRADE GRID ──────────────────────────────── */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.trade-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.trade-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(16,24,40,0.18);
}

.trade-card-img {
  height: 185px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  position: relative;
}
.trade-card:hover .trade-card-img { transform: scale(1.07); }
.trade-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,18,30,0.7));
}

.trade-card-body {
  padding: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trade-card-body strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.trade-card-body span { font-size: 0.82rem; color: var(--muted); }

.trade-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff3c4;
  border-radius: 8px;
  color: #8a6000;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────── */
.hiw-section { background: var(--bg2); }
.hiw-section .section-title { color: white; }
.hiw-section .section-subtitle { color: rgba(255,255,255,0.5); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--accent) 30%, rgba(245,179,1,0.25));
  z-index: 0;
  pointer-events: none;
}

.hiw-step { padding: 0 28px; position: relative; z-index: 1; }

.hiw-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background: rgba(245, 179, 1, 0.1);
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 50%;
  margin-bottom: 24px;
}
.hiw-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.hiw-step p { font-size: 0.95rem; color: rgba(255,255,255,0.52); line-height: 1.7; }

/* ── TESTIMONIAL ─────────────────────────────── */
.testimonial-section {
  background: var(--accent);
  padding: 64px 0;
}
.testimonial { max-width: 860px; margin: 0 auto; text-align: center; }
.testimonial p {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  color: #111;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial cite { font-style: normal; display: block; }
.testimonial cite strong { display: block; font-weight: 700; font-size: 1rem; color: #111; }
.testimonial cite span { display: block; font-size: 0.875rem; color: rgba(17,17,17,0.6); margin-top: 3px; }

/* ── PRICING ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--line);
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(245,179,1,0.18);
}

.price-badge {
  display: inline-block;
  background: var(--accent);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.price-tier {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.price {
  font-family: var(--font-display);
  font-size: 4.2rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
}
.price-currency { font-size: 1.8rem; margin-top: 7px; margin-right: 2px; }

.price-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; line-height: 1.65; }

.price-card ul { list-style: none; margin-bottom: 28px; }
.price-card ul li {
  padding: 7px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.price-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── FEATURES ────────────────────────────────── */
.features-section { background: white; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  padding: 32px;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}
.feature-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(245,179,1,0.1);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff3c4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #8a6000;
}
.feature-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feature-item p { font-size: 0.95rem; color: var(--muted); line-height: 1.68; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--bg); color: white; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 52px;
}
.footer-brand .brand { margin-bottom: 14px; display: block; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  max-width: 280px;
}

.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── TRADE PAGE SPECIFIC ─────────────────────── */
.trade-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.trade-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7,17,31,0.95) 0%, rgba(7,17,31,0.78) 55%, rgba(7,17,31,0.35) 100%);
}
.trade-hero .container { position: relative; z-index: 1; }
.trade-hero .hero-content { max-width: 640px; }
.trade-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: white;
  margin-bottom: 20px;
}

.coming-soon-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
  border: 1.5px solid var(--line);
  text-align: center;
}
.coming-soon-card .icon-circle {
  width: 72px;
  height: 72px;
  background: #fff3c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #8a6000;
}
.coming-soon-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  color: var(--ink);
}
.coming-soon-card > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.features-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}
.features-preview li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f9fafb;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
}
.features-preview li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.trade-page-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trade-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; gap: 32px; }
  .features-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .hiw-steps::before { display: none; }
  .demo-banner-inner { flex-direction: column; text-align: center; }
  .trade-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-inner { flex-wrap: wrap; gap: 16px; }
  .stat { min-width: 40%; }
  .stat-divider { display: none; }
  .features-preview { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  header {
    height: auto;
    flex-wrap: wrap;
    padding: 16px 5%;
    gap: 12px;
  }
  .header-cta { display: none; }
  .nav-links { gap: 16px; flex-wrap: wrap; }
  .hero-h1 { font-size: clamp(4rem, 16vw, 6rem); }
  .hero { min-height: 600px; }
  .trade-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 0; }
  .coming-soon-card { padding: 32px 24px; }
}

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