/* Talo landing — brand: #CCFF00, #121212, Montserrat */

:root {
  --talo-green: #ccff00;
  --talo-green-dark: #5a7300;
  --talo-bg: #121212;
  --talo-card: #1e1e1e;
  --talo-text: #ffffff;
  --talo-text-muted: rgba(255, 255, 255, 0.65);
  --talo-border: rgba(255, 255, 255, 0.12);
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --max-width: 1100px;
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--talo-bg);
  color: var(--talo-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--talo-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(18, 18, 18, 0.85);
  border-bottom: 1px solid var(--talo-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--talo-green);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--talo-green);
  color: #000;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-outline {
  background: transparent;
  color: var(--talo-text);
  border: 1px solid var(--talo-border);
}

.btn-outline:hover {
  border-color: var(--talo-green);
  color: var(--talo-green);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--talo-text);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(204, 255, 0, 0.12);
  color: var(--talo-green);
  border: 1px solid rgba(204, 255, 0, 0.25);
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--talo-green);
}

.hero-tagline {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  color: var(--talo-text-muted);
  letter-spacing: 0.06em;
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--talo-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Features ───────────────────────────────────────────────────────────── */

.section {
  padding: 3.5rem 0;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 32rem;
  text-align: center;
  color: var(--talo-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.5rem;
  background: var(--talo-card);
  border: 1px solid var(--talo-border);
  border-radius: var(--radius);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--talo-text-muted);
}

/* ── CTA band ───────────────────────────────────────────────────────────── */

.cta-band {
  padding: 3rem 0;
}

.cta-inner {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(204, 255, 0, 0.12) 0%,
    rgba(30, 30, 30, 0.9) 60%
  );
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: calc(var(--radius) + 4px);
}

.cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.cta-inner p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: var(--talo-text-muted);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.store-buttons .btn[disabled],
.store-buttons .btn.coming-soon {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--talo-border);
  font-size: 0.9rem;
  color: var(--talo-text-muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: var(--talo-text-muted);
}

.footer-links a:hover {
  color: var(--talo-green);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    padding-top: 2.5rem;
  }
}
