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

/* ── TOKENS ── */
:root {
  --black:   #080810;
  --dark:    #0c0c18;
  --card:    #10101e;
  --card2:   #141428;
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.15);
  --lime:    #c8ff57;
  --lime-bg: rgba(200,255,87,0.09);
  --lime-glow: rgba(200,255,87,0.20);
  --white:   #f0f0f8;
  --muted:   rgba(240,240,248,0.45);
  --muted2:  rgba(240,240,248,0.70);
  --display: 'Syne', sans-serif;
  --body:    'DM Sans', sans-serif;
  --r:  12px;
  --rs: 8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none; color: var(--white);
  flex-shrink: 0;
}
.logo span { color: var(--lime); }

.nav-links {
  display: flex; align-items: center;
  gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .cta-link {
  background: var(--lime); color: var(--black) !important;
  padding: 0.45rem 1.1rem; border-radius: var(--rs);
  font-weight: 600; font-size: 0.83rem;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-links .cta-link:hover { opacity: 0.88; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 1.35rem;
  cursor: pointer; padding: 4px; line-height: 1;
}

/* Mobile nav */
@media (max-width: 860px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem 6%;
    gap: 1.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-links .cta-link { align-self: flex-start; }
}

/* ── SECTION LABEL ── */
.label {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.85rem;
}
.label::before {
  content: ''; display: block;
  width: 20px; height: 1.5px;
  background: var(--lime); flex-shrink: 0;
}

/* ── HEADINGS ── */
.h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em;
}
.h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
}
.h3 {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.3;
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--muted); line-height: 1.75;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--body); font-weight: 600;
  font-size: 0.9rem; padding: 0.78rem 1.6rem;
  border-radius: var(--rs); text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lime {
  background: var(--lime); color: var(--black);
}
.btn-lime:hover { box-shadow: 0 10px 32px var(--lime-glow); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.28); }

/* ── TICKER ── */
.ticker {
  background: var(--lime); overflow: hidden;
  padding: 0.6rem 0; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: tick 26s linear infinite;
}
.ticker-item {
  font-family: var(--display); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black);
  padding: 0 2.5rem;
  display: inline-flex; align-items: center; gap: 1.5rem;
}
.ticker-item::after { content: '✦'; font-size: 0.52rem; opacity: 0.5; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION PADDING ── */
.section { padding: 90px 6%; }
.section-dark { background: var(--dark); }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
}

/* ── CHECK LIST ── */
.check-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--muted2);
  font-weight: 300; line-height: 1.55;
}
.check-list li::before {
  content: '✓'; color: var(--lime);
  font-weight: 700; font-size: 0.8rem;
  min-width: 14px; margin-top: 0.12rem;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 6% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.footer-brand .tagline {
  font-size: 0.86rem; color: var(--muted);
  line-height: 1.7; margin-top: 0.65rem;
  max-width: 260px; font-weight: 300;
}
.footer-col h4 {
  font-family: var(--display); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted2);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 0.875rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--muted);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--lime); }
.footer-legal { display: flex; gap: 1.5rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 740px;
  padding: 140px 6% 100px;
}
.legal-wrap h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.legal-date {
  font-size: 0.83rem; color: var(--muted);
  padding-bottom: 2rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-wrap h2 {
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 0.8rem;
}
.legal-wrap p {
  font-size: 0.92rem; color: var(--muted2);
  line-height: 1.82; font-weight: 300;
  margin-bottom: 1rem;
}
.legal-wrap ul {
  margin: 0.25rem 0 1rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.legal-wrap ul li {
  font-size: 0.92rem; color: var(--muted2);
  line-height: 1.7; font-weight: 300;
}
.legal-wrap a { color: var(--lime); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-footer-links {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-footer-links a {
  font-size: 0.83rem; color: var(--muted); text-decoration: none;
  padding: 0.38rem 1rem; border: 1px solid var(--border);
  border-radius: 100px; transition: all 0.2s;
}
.legal-footer-links a:hover { color: var(--white); border-color: var(--border2); }

/* ── SAMPLE ARTICLE PAGES ── */
.sample-page { padding: 100px 6% 80px; }
.sample-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 2rem;
}
.sample-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.sample-breadcrumb a:hover { color: var(--lime); }
.sample-breadcrumb .sep { color: var(--border2); }

.sample-header {
  max-width: 780px;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.sample-tag {
  display: inline-flex; align-items: center;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}
.tag-green { background: rgba(200,255,87,0.1); color: var(--lime); }
.tag-blue  { background: rgba(100,160,255,0.1); color: #64a0ff; }
.tag-orange{ background: rgba(255,140,100,0.1); color: #ff8c64; }

.sample-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  color: var(--white);
}
.sample-meta {
  display: flex; align-items: center; gap: 1.25rem;
  font-size: 0.83rem; color: var(--muted);
  flex-wrap: wrap;
}
.sample-meta span { display: flex; align-items: center; gap: 0.4rem; }
.sample-meta .dot { color: var(--border2); }

.sample-body {
  max-width: 720px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--muted2);
  font-weight: 300;
}
.sample-body p { margin-bottom: 1.3rem; }
.sample-body h2 {
  font-family: var(--display);
  font-size: 1.55rem; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.sample-body h3 {
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 2rem 0 0.8rem;
  line-height: 1.3;
}
.sample-body strong { color: var(--white); font-weight: 600; }
.sample-body em { color: var(--muted2); font-style: italic; }
.sample-body ul, .sample-body ol {
  margin: 0.5rem 0 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.sample-body ul li, .sample-body ol li {
  font-size: 1.04rem; line-height: 1.75;
  font-weight: 300;
}
.sample-body ul li::marker { color: var(--lime); }
.sample-body ol li::marker { color: var(--lime); font-weight: 700; }
.sample-body a {
  color: var(--lime); text-decoration: underline;
  text-decoration-color: rgba(200,255,87,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.sample-body a:hover { text-decoration-color: var(--lime); }
.sample-body blockquote {
  border-left: 3px solid var(--lime);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--muted2);
}
.sample-body code {
  background: rgba(255,255,255,0.06);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--lime);
  font-family: 'Menlo', 'Monaco', monospace;
}
.sample-body .callout {
  background: rgba(200,255,87,0.06);
  border: 1px solid rgba(200,255,87,0.18);
  border-left: 3px solid var(--lime);
  border-radius: var(--rs);
  padding: 1.1rem 1.4rem;
  margin: 1.75rem 0;
}
.sample-body .callout p { margin: 0; color: var(--muted2); }
.sample-body .callout strong { color: var(--lime); }

.sample-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--rs);
  overflow: hidden;
  font-size: 0.92rem;
}
.sample-body table th {
  background: var(--card);
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted2);
  border-bottom: 1px solid var(--border);
}
.sample-body table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
}
.sample-body table tr:last-child td { border-bottom: none; }

.sample-footer {
  max-width: 720px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.sample-footer-note {
  font-size: 0.875rem; color: var(--muted);
  font-weight: 300; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sample-footer-cta {
  display: flex; gap: 0.875rem; flex-wrap: wrap;
}

.back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--lime); }

@media (max-width: 600px) {
  .sample-page { padding-top: 90px; }
  .sample-title { font-size: 1.7rem; }
  .sample-body { font-size: 0.98rem; }
  .sample-body h2 { font-size: 1.35rem; }
  .sample-body h3 { font-size: 1.1rem; }
}

/* ── NEWSLETTER SAMPLE STYLES ── */
.newsletter-frame {
  max-width: 680px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: 0 auto;
}
.newsletter-bar {
  display: flex; align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}
.nb-dot { width: 8px; height: 8px; border-radius: 50%; }
.nb-r { background: #ff5f56; }
.nb-y { background: #ffbd2e; }
.nb-g { background: #27c93f; }
.newsletter-meta {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.nm-row {
  display: flex; gap: 1rem;
  font-size: 0.83rem; color: var(--muted);
  margin-bottom: 0.35rem;
  font-family: 'Menlo', 'Monaco', monospace;
}
.nm-row:last-child { margin-bottom: 0; }
.nm-label { min-width: 80px; color: var(--muted); }
.nm-val { color: var(--white); font-weight: 500; }
.newsletter-body {
  padding: 2.5rem 2rem;
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--muted2);
  font-weight: 300;
}
.newsletter-body h2 {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.newsletter-body h2:first-child { margin-top: 0; }
.newsletter-body h3 {
  font-family: var(--display);
  font-size: 1rem; font-weight: 700;
  color: var(--white);
  margin: 1.5rem 0 0.5rem;
}
.newsletter-body p { margin-bottom: 1.1rem; }
.newsletter-body strong { color: var(--white); font-weight: 600; }
.newsletter-body a { color: var(--lime); text-decoration: underline; text-decoration-color: rgba(200,255,87,0.3); text-underline-offset: 3px; }
.newsletter-body ul { margin: 0.4rem 0 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.newsletter-body ul li::marker { color: var(--lime); }
.newsletter-signoff {
  padding-top: 1.5rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}

/* ── SOCIAL SAMPLE STYLES ── */
.social-post-list { max-width: 720px; display: flex; flex-direction: column; gap: 1.5rem; }
.social-post {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.social-header {
  padding: 1rem 1.35rem;
  display: flex; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.social-icon {
  width: 32px; height: 32px;
  background: var(--lime);
  color: var(--black);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  flex-shrink: 0;
}
.social-icon.li { background: #0077B5; color: #fff; }
.social-icon.x { background: #000; color: #fff; border: 1px solid var(--border); }
.social-meta { flex: 1; }
.social-platform { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.social-tag { font-size: 0.72rem; color: var(--muted); }
.social-var { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); background: var(--lime-bg); padding: 0.2rem 0.55rem; border-radius: 100px; }
.social-content {
  padding: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted2);
  font-weight: 300;
  white-space: pre-line;
}
.social-content strong { color: var(--white); font-weight: 600; }
