@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500&display=swap');

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

:root {
  --bg:        #07070f;
  --bg-card:   #0e0e1a;
  --border:    #1e1e36;
  --teal:      #3dd6d6;
  --teal-dim:  #1a8a8a;
  --purple:    #9b6dff;
  --purple-dim:#5b3ea0;
  --gold:      #c9a84c;
  --text:      #d0cfe8;
  --text-dim:  #7a799a;
  --radius:    8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--teal-dim);
  object-fit: cover;
}

.nav-logo span {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--teal); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('tfa-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 3rem 2rem;
}

.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 24px rgba(61,214,214,0.3);
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(61,214,214,0.4);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
}
.btn-primary:hover { background: #5ae8e8; box-shadow: 0 0 16px rgba(61,214,214,0.5); }

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn-secondary:hover { background: rgba(61,214,214,0.1); }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }

.btn-coming-soon {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── Sections ── */
section { padding: 5rem 2rem; }

.container { max-width: 900px; margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ── How it works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--teal-dim); }

.step-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step p { font-size: 0.9rem; color: var(--text-dim); }

/* ── Feature list ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.feature p { font-size: 0.9rem; color: var(--text-dim); }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, rgba(61,214,214,0.06), rgba(155,109,255,0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-band h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band p { color: var(--text-dim); margin-bottom: 2rem; }

/* ── Examples page ── */
.session {
  margin-bottom: 4rem;
}

.session-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.session-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.session-meta { display: flex; flex-direction: column; gap: 0.4rem; }

.meta-row { display: flex; gap: 0.5rem; font-size: 0.9rem; }
.meta-label { color: var(--teal); font-weight: 600; min-width: 80px; }
.meta-value { color: var(--text-dim); }

.exchange { display: flex; flex-direction: column; gap: 1.25rem; }

.action-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(155,109,255,0.06);
  border: 1px solid rgba(155,109,255,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.action-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--purple);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 0.1rem;
}

.action-text { color: var(--text); font-size: 0.95rem; }

.narrative-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

/* ── Pricing page ── */
.pricing-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-dim);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.pricing-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

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

.pricing-table td:nth-child(2) {
  color: var(--gold);
  font-weight: 600;
  font-family: 'Cinzel', serif;
}

.pricing-table td .note { font-size: 0.8rem; color: var(--text-dim); display: block; margin-top: 0.2rem; }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(155,109,255,0.15);
  border: 1px solid var(--purple-dim);
  color: var(--purple);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  margin-left: 0.6rem;
  vertical-align: middle;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

footer a { color: var(--teal-dim); text-decoration: none; }
footer a:hover { color: var(--teal); }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  nav { padding: 0.75rem 1rem; }
  .nav-links { gap: 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
  .hero { min-height: 420px; }
}
