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

:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --border: #1E1E1E;
  --border-hi: #2A2A2A;
  --accent: #00E5A0;
  --text: #F0F0F0;
  --text-2: #888;
  --text-3: #3A3A3A;
  --mono: 'DM Mono', monospace;
  --display: 'Clash Display', sans-serif;
  --body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 160, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 160, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
}

.logo {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

a.logo,
a.footer-logo {
  text-decoration: none;
  color: inherit;
}

.nav-cta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(0, 229, 160, 0.4);
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

section {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 2.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 2rem;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: var(--mono);
  font-size: 0.85rem;
  background: var(--accent);
  color: #000;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-hi);
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-2);
}

.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 0.7rem 0;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  padding: 0 2.5rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

.what {
  padding: 7rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.what-intro {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 4rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.pillar {
  background: var(--surface);
  padding: 2.25rem 2rem;
  user-select: none;
  pointer-events: none;
}

.pillar-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.pillar h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.platforms-section {
  border-top: 1px solid var(--border);
  padding: 5rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.plat {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-2);
  border: 1px solid var(--border-hi);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  user-select: none;
  pointer-events: none;
}

.for-whom {
  border-top: 1px solid var(--border);
  padding: 6rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.audience-card {
  border: 1px solid var(--border-hi);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
}

.audience-card h4 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.audience-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}

.pricing-section,
.faq-section {
  border-top: 1px solid var(--border);
  padding: 6rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-intro {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

a.pricing-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pricing-card {
  border: 1px solid var(--border-hi);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.pricing-card:hover,
.pricing-card:focus-visible {
  border-color: var(--accent);
  background: rgba(0, 229, 160, 0.06);
  outline: none;
}

.pricing-card:active {
  border-color: var(--accent);
  background: rgba(0, 229, 160, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 229, 160, 0.35);
}

.pricing-card:hover .pricing-cta.btn-ghost,
.pricing-card:focus-visible .pricing-cta.btn-ghost {
  color: var(--text);
  border-color: var(--accent);
}

.pricing-card:hover .pricing-cta.btn-primary,
.pricing-card:focus-visible .pricing-cta.btn-primary,
.pricing-card:active .pricing-cta.btn-primary {
  opacity: 0.85;
}

.pricing-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.pricing-card .tier-ideal {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.pricing-card .price-tag {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.pricing-card .price-tag--headline {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.pricing-card .price-baseline {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.pricing-features li::before {
  content: '\2713';
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

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

.pricing-cta {
  align-self: flex-start;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  border: 1px solid var(--border-hi);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
}

.faq-item h4 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.faq-item p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

.contact {
  border-top: 1px solid var(--border);
  padding: 7rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left h2 {
  margin-bottom: 1rem;
}

.contact-left p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-info a {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.contact-info a::before {
  content: '\2192';
  font-size: 0.72rem;
}

.contact-info a:hover {
  opacity: 0.7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

input,
textarea,
select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #3A3A3A;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(0, 229, 160, 0.5);
}

select {
  color: var(--text-2);
  cursor: pointer;
}

select option {
  background: #111;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  font-family: var(--mono);
  font-size: 0.82rem;
  background: var(--accent);
  color: #000;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  opacity: 0.85;
}

.form-note {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.footer-logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: var(--accent);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  text-align: right;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  width: 100%;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-3);
  line-height: 1.65;
  letter-spacing: 0.03em;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  animation: fadeUp 0.5s ease both;
}

h1 {
  animation: fadeUp 0.5s ease 0.08s both;
}

.hero-sub {
  animation: fadeUp 0.5s ease 0.16s both;
}

.hero-actions {
  animation: fadeUp 0.5s ease 0.24s both;
}

@media (max-width: 720px) {

  nav,
  .hero,
  .what,
  .platforms-section,
  .for-whom,
  .pricing-section,
  .faq-section,
  .contact {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  footer {
    padding: 1.5rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding: 5.5rem 1.25rem 3rem;
  }
}

.platform-checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checks-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.checks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-2);
  border: 1px solid var(--border-hi);
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  user-select: none;
}

.check-item:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 160, 0.06);
}

.check-item input[type="checkbox"] {
  display: none;
}

/* Legal / policy pages (shared with index design tokens) */
.legal-page .legal-main {
  position: relative;
  z-index: 1;
}

.legal-main {
  padding: 6.5rem 2.5rem 4rem;
  max-width: 920px;
  margin: 0 auto;
}

.legal-container {
  max-width: 52rem;
  margin: 0 auto;
}

.legal-page .legal-container h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
  animation: none;
}

.legal-page .legal-container h2 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--accent);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-page .legal-container h2:first-of-type {
  margin-top: 1.5rem;
}

.legal-page .legal-container h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.legal-page .legal-container p,
.legal-page .legal-container li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1rem;
}

.legal-page .legal-container strong {
  color: var(--text);
  font-weight: 600;
}

.legal-page .legal-container ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-muted {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  font-style: normal;
  margin-bottom: 2rem;
}

.legal-callout {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 1.25rem 1.35rem;
  margin: 1.5rem 0;
}

.legal-callout strong {
  color: var(--text);
}

.legal-callout--warn {
  border-left-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.06);
  color: var(--text-2);
}

.legal-callout--note {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 6px;
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
}

.legal-footnote {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
