/* We Speak Soon - Marketing Site Styles */

:root {
  --bg: #0b0d12;
  --card: #121622;
  --muted: #9aa4b2;
  --text: #e7ecf3;
  --line: #232a3b;
  --accent: #5eead4;
  --accent2: #60a5fa;
  --radius: 14px;
  --max-width: 1024px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--accent2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
}

h3 {
  font-size: 1.125rem;
  font-weight: 850;
}

p {
  margin: 0 0 1em;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 18, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-weight: 950;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: 1px solid rgba(94, 234, 212, 0.35);
  background: rgba(94, 234, 212, 0.10);
  color: var(--text);
}

.btn:hover {
  background: rgba(94, 234, 212, 0.18);
  border-color: rgba(94, 234, 212, 0.5);
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-large {
  padding: 16px 28px;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(900px 240px at 10% 0%, rgba(96, 165, 250, 0.20), transparent 55%),
    radial-gradient(700px 260px at 90% 20%, rgba(94, 234, 212, 0.16), transparent 55%),
    var(--card);
  border-bottom: 1px solid rgba(96, 165, 250, 0.25);
}

.hero-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-subhead {
  font-size: 1.125rem;
  color: rgba(231, 236, 243, 0.85);
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.hero-badge strong {
  color: var(--text);
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

/* Value Props Section */
.value-props {
  padding: 80px 0;
}

.value-props h2 {
  text-align: center;
  margin-bottom: 48px;
}

.props-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .props-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prop-card {
  text-align: center;
  padding: 32px 24px;
}

.prop-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.prop-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* Steps Section */
.steps-section {
  padding: 80px 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.steps-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 1.0625rem;
}

.steps-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(94, 234, 212, 0.35);
  background: rgba(94, 234, 212, 0.08);
  color: var(--text);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 6px;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* Languages Section */
.languages-section {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.languages-section h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.languages-list {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 24px;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.8125rem;
}

/* Page Header (for inner pages) */
.page-header {
  padding: 60px 0;
  text-align: center;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(96, 165, 250, 0.15), transparent 60%),
    var(--card);
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  color: var(--muted);
  font-size: 1.0625rem;
  margin: 0;
}

/* Roadmap Section */
.roadmap-section {
  padding: 60px 0;
}

.roadmap-category {
  margin-bottom: 48px;
}

.roadmap-category:last-child {
  margin-bottom: 0;
}

.roadmap-category h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.now {
  background: rgba(94, 234, 212, 0.15);
  color: var(--accent);
}

.status-badge.soon {
  background: rgba(96, 165, 250, 0.15);
  color: var(--accent2);
}

.status-badge.horizon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-item .check {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.feature-item .icon-soon {
  color: var(--accent2);
  font-size: 0.625rem;
  line-height: 2.2;
  flex-shrink: 0;
}

.feature-item .icon-horizon {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
}

.feature-item .feature-desc {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Vote Section */
.vote-section {
  padding: 60px 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.vote-section h2 {
  margin-bottom: 16px;
}

.vote-intro {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto 28px;
}

.vote-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vote-note {
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0;
}

/* Roadmap Preview (for homepage) */
.roadmap-preview {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.roadmap-preview h2 {
  margin-bottom: 16px;
}

.roadmap-preview p {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 24px;
}

/* CTA subhead */
.cta-subhead {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 24px;
}

/* Utility */
.text-muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 639px) {
  .hero {
    padding: 48px 0 64px;
  }

  .value-props,
  .steps-section,
  .cta-section {
    padding: 48px 0;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .prop-card {
    padding: 24px 20px;
  }
}
