/* easytyga.com - Anthropic-inspired cream/black theme */

:root {
  --bg: #FAF9F7;
  --surface: #FFFFFF;
  --dark: #1A1A1A;
  --border: #E5E5E5;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --green: #059669;
  --accent: #1A1A1A;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
}

a { color: var(--dark); font-weight: 500; }
a:hover { color: #000; }

.btn-primary, .btn-dark {
  background: var(--dark) !important;
  border-color: var(--dark) !important;
  color: #fff !important;
  border-radius: 999px !important;
}
.btn-primary:hover, .btn-dark:hover {
  background: #000 !important;
}
.btn-outline-dark {
  border-radius: 999px !important;
}
.btn-outline-light {
  border-radius: 999px !important;
}
.btn-light {
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
}

/* NAV */
.navbar { background: transparent; position: absolute; width: 100%; z-index: 10; }
.navbar-brand { color: var(--dark) !important; }

/* HERO */
.hero {
  background: var(--bg);
  padding: 140px 0 80px;
  text-align: center;
}

.hero-content { max-width: 720px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: var(--dark);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-install { margin-bottom: 40px; }

.install-box {
  display: inline-flex;
  align-items: center;
  background: var(--dark);
  border-radius: 12px;
  padding: 14px 20px;
  gap: 16px;
}

.install-box code {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.install-copy {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.install-copy:hover { color: #fff; }

/* Terminal mockup */
.hero-terminal {
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 12px;
  padding: 20px 24px;
  overflow-x: auto;
}

.hero-terminal pre {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #e5e5e5;
  white-space: pre;
}

.t-dim { color: #555; }
.t-green { color: #4ade80; }
.t-cyan { color: #67e8f9; }
.t-yellow { color: #fbbf24; }
.t-box {
  background: #333;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
}

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: #fff; }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Problem cards */
.problem-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 100%;
}
.problem-card i { color: var(--dark); }
.problem-card h5 { font-weight: 700; margin-bottom: 8px; }
.problem-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Feature cards */
.section-dark {
  background: var(--dark);
  color: #fff;
}
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.5); }

.feature-card {
  padding: 24px;
  border: 1px solid #333;
  border-radius: 16px;
  height: 100%;
  background: rgba(255,255,255,0.03);
}
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: #fff;
}
.feature-card h5 { font-weight: 700; margin-bottom: 6px; font-size: 1rem; }
.feature-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }

/* Earn section */
.earn-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.earn-terminal {
  background: var(--dark);
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-block;
  margin: 16px 0;
}
.earn-terminal code { color: #4ade80; font-size: 1rem; font-weight: 600; }

.earn-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.earn-list li {
  padding: 6px 0;
  font-size: 0.95rem;
}
.earn-list i { color: var(--green); margin-right: 10px; width: 16px; }

.earn-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.earn-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.earn-stat-val { font-weight: 800; font-size: 1.1rem; }
.earn-stat-label { color: var(--green); font-weight: 600; font-size: 0.9rem; }

/* Memory section */
.memory-before-after { display: flex; flex-direction: column; gap: 12px; }

.memory-box {
  border-radius: 16px;
  padding: 18px 20px;
}
.memory-before { background: rgba(255,255,255,0.05); border: 1px solid #333; }
.memory-after { background: rgba(74, 222, 128, 0.05); border: 1px solid rgba(74, 222, 128, 0.2); }

.memory-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.memory-before .memory-label { color: rgba(255,255,255,0.4); }
.memory-after .memory-label { color: #4ade80; }

.memory-box p { font-size: 0.9rem; margin-bottom: 4px; }
.memory-response { color: rgba(255,255,255,0.4); font-style: italic; }
.memory-after .memory-response { color: #fff; }

/* CTA */
.section-cta {
  padding: 80px 0;
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.section-cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 24px; color: #fff; }

.cta-install {
  background: #333;
  border: 1px solid #555;
  border-radius: 12px;
  padding: 16px 32px;
  display: inline-block;
  margin-bottom: 32px;
}
.cta-install code { font-size: 1.3rem; font-weight: 700; color: #4ade80; }

.cta-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-links .btn { padding: 10px 24px; font-weight: 600; }

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.site-footer p { margin-bottom: 4px; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 60px 0; }
  .install-box code { font-size: 1rem; }
}
