/* FuturesPack — landing styles */
:root {
  --bg-deep: #07090f;
  --bg-card: #0e121c;
  --bg-card-hover: #121827;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ecf4;
  --muted: #8b95a8;
  --accent: #3ee0c6;
  --accent-dim: rgba(62, 224, 198, 0.15);
  --gold: #e8c547;
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.6;
  min-height: 100vh;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.12em 0.35em;
  border-radius: 6px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(7, 9, 15, 0.75);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--bg-deep) !important;
  background: var(--accent);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 56px 0 auto 0;
    flex-direction: column;
    padding: 1.25rem;
    background: rgba(7, 9, 15, 0.97);
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Hero */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 520px);
  height: 320px;
  background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  color: var(--muted);
}

.hero-title-accent {
  display: block;
  color: var(--text);
}

.hero-title-accent em {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #2bc4ad 100%);
  color: #04120f;
  box-shadow: 0 8px 32px rgba(62, 224, 198, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(62, 224, 198, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-block {
  width: 100%;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-meta li {
  position: relative;
}

.hero-meta li:not(:last-child)::after {
  content: "·";
  margin-left: 1.25rem;
  opacity: 0.4;
}

@media (max-width: 520px) {
  .hero-meta li:not(:last-child)::after {
    display: none;
  }
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.65rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(62, 224, 198, 0.2);
  transform: translateY(-2px);
}

.card-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Band */
.band {
  max-width: none;
  padding: 0;
  margin: 2rem 0;
}

.band-inner {
  background: linear-gradient(90deg, rgba(62, 224, 198, 0.08), rgba(232, 197, 71, 0.06));
  border-block: 1px solid var(--border);
}

.band blockquote {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  text-align: center;
}

/* Included */
.checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.checklist-wide {
  max-width: 42rem;
}

.checklist li {
  margin-bottom: 0.85rem;
}

.checklist strong {
  color: var(--text);
}

/* Purchase */
.purchase {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.purchase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: linear-gradient(145deg, var(--bg-card) 0%, #0a0e18 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.purchase-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, var(--accent-dim), transparent 55%);
  pointer-events: none;
}

.purchase-copy,
.purchase-action {
  position: relative;
  z-index: 1;
}

.purchase-copy h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.price {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.price .currency {
  font-size: 1.25rem;
  vertical-align: super;
  color: var(--muted);
  font-weight: 500;
}

.price .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.purchase-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.purchase-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purchase-perks li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.purchase-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.purchase-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}

@media (max-width: 720px) {
  .purchase-card {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }
}

/* FAQ */
.faq-list {
  margin: 0;
  border-top: 1px solid var(--border);
}

.faq-list dt {
  font-weight: 600;
  padding: 1.25rem 0 0.35rem;
}

.faq-list dt:first-of-type {
  padding-top: 0;
}

.faq-list dd {
  margin: 0;
  padding: 0 0 1.25rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.faq-list dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

/* Footer */
.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.footer-meta {
  margin: 1rem 0 0;
  opacity: 0.7;
}
