/* TurnKey Futures Strategies - Shared Stylesheet */

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

body {
  background: #0a0a0f;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}

a { color: #00d4ff; text-decoration: none; }
a:hover { color: #5be7ff; }

/* Nav */
.nav {
  background: #111;
  border-bottom: 1px solid #222;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-brand span { color: #00d4ff; }

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: #00d4ff; }

/* Page container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
}

.container.wide { max-width: 1600px; }

/* Hero */
.hero {
  text-align: center;
  padding: 80px 30px 60px;
  background: linear-gradient(180deg, #0a0a0f 0%, #14141c 100%);
  border-bottom: 1px solid #222;
}

.hero h1 {
  font-size: 48px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 span { color: #00d4ff; }

.hero .subtitle {
  font-size: 20px;
  color: #aaa;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #00d4ff;
  color: #0a0a0f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #5be7ff;
  color: #0a0a0f;
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.btn.secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
}

.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Headings */
h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

p { margin-bottom: 16px; color: #c0c0c0; }

/* Cards / sections */
.section { padding: 60px 0; }

.card {
  background: #14141c;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.card:hover { border-color: #333; }

.card h3 { color: #fff; margin-bottom: 12px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Moat / pitch row */
.moat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.moat-item {
  background: #14141c;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.moat-item .icon { font-size: 36px; margin-bottom: 16px; color: #00d4ff; }
.moat-item h3 { color: #fff; margin-bottom: 8px; }
.moat-item p { color: #aaa; font-size: 15px; margin: 0; }

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #14141c;
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #222;
  font-size: 14px;
}

th {
  background: #0f0f15;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

td { color: #c0c0c0; }

tr:last-child td { border-bottom: none; }

/* Pricing tiers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: #14141c;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.pricing-card .tier-name {
  font-size: 14px;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card .price {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card .price small {
  font-size: 16px;
  color: #888;
  font-weight: 400;
}

.pricing-card .price-alt {
  color: #888;
  font-size: 13px;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  color: #c0c0c0;
  font-size: 14px;
  border-bottom: 1px solid #1a1a22;
}

.pricing-card li:last-child { border-bottom: none; }

.pricing-card li:before {
  content: "\2713  ";
  color: #00d4ff;
  font-weight: 700;
}

/* Placeholder block */
.placeholder {
  background: #14141c;
  border: 2px dashed #333;
  border-radius: 12px;
  padding: 60px 24px;
  text-align: center;
  color: #666;
  font-style: italic;
  margin: 24px 0;
}

/* Disclosure */
.disclosure {
  background: #1a1a22;
  border-left: 3px solid #ff9800;
  border-radius: 4px;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
}

.disclosure strong { color: #ff9800; display: block; margin-bottom: 8px; }

/* Iframe wrapper for embedded analyzer */
.iframe-wrap {
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
  background: #0a0a0f;
}

.iframe-wrap iframe {
  width: 100%;
  height: 1400px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  background: #0a0a0f;
  border-top: 1px solid #222;
  padding: 40px 30px;
  text-align: center;
  color: #666;
  font-size: 13px;
  margin-top: 80px;
}

.footer a { color: #888; }
.footer a:hover { color: #00d4ff; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero .subtitle { font-size: 16px; }
  h2 { font-size: 24px; }
  .nav { padding: 12px 16px; }
  .container { padding: 24px 16px; }
}
