:root {
  --brand: #39ff14;
  --brand-dark: #1fcc0a;
  --shade: #000000;
  --paper: #0a0e0a;
  --paper-soft: #111611;
  --rule: rgba(57,255,20,.18);
  --ink: #d4ffd4;
  --ink-soft: rgba(212,255,212,.6);
  --space: 72px;
  --corner: 2px;
  --glow: 0 0 20px rgba(57,255,20,.12);
  --type-head: 'Sora', system-ui, sans-serif;
  --type-body: 'Inter', system-ui, sans-serif;
  --hue-shift: 0deg;
  --c-border: rgba(57,255,20,.18);
  --c-text: #d4ffd4;
  --c-bg: #0a0e0a;
  --c-bg-soft: #111611;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--type-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--type-head);
  margin: 0 0 1rem 0;
}

a { color: var(--brand); text-decoration: underline; }
a:hover { text-decoration: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--space) 0;
  background: var(--c-bg);
}

.section:nth-child(even) {
  background: var(--c-bg-soft);
}

.nav {
  background: var(--shade);
  color: var(--ink);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--type-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-link:hover { color: var(--brand); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.intro {
  text-align: center;
}

.intro h1 {
  color: var(--ink);
  font-weight: 700;
}

.intro p {
  color: var(--ink-soft);
}

.cta-acc {
  background: var(--brand);
  color: var(--shade);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.2s;
}

.cta-acc:hover {
  background: var(--brand-dark);
  color: var(--shade);
}

.cta-out {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.2s;
}

.cta-out:hover {
  background: rgba(57,255,20,.1);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 1rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}

table th {
  background: rgba(57,255,20,.05);
  font-weight: 600;
  color: var(--brand);
}

table tr:hover {
  background: rgba(57,255,20,.03);
}

.step-card {
  background: var(--paper-soft);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--rule);
  box-shadow: var(--glow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: var(--shade);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 0.75rem 0;
  color: var(--ink);
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

details {
  margin-bottom: 1rem;
}

details summary {
  cursor: pointer;
  padding: 1rem;
  background: var(--paper-soft);
  border-radius: 4px;
  border: 1px solid var(--rule);
  font-weight: 600;
  color: var(--ink);
}

details summary:hover {
  background: rgba(57,255,20,.05);
}

details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

details > div {
  padding: 1rem;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  color: var(--ink-soft);
}

.foot {
  background: var(--shade);
  color: var(--ink-soft);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--rule);
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.foot a {
  color: var(--brand);
}

.foot strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.75rem;
}

.foot ul {
  list-style: none;
}

.foot li {
  margin-bottom: 0.5rem;
}

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper-soft);
  border-top: 2px solid var(--brand);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: var(--glow);
  color: var(--ink);
}

.consent h3 {
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.consent p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.consent-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.consent-btns button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.consent-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--brand);
  color: var(--shade);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 999;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-menu.open {
    display: flex;
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--shade);
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .intro h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 3rem 0;
  }
}
