/* ── Nav ── */
.nav-logo {
  height: 36px;
  width: auto;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  max-width: 780px;
  margin: 0 auto;
}

.hero-logo {
  width: min(380px, 80vw);
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 8px 32px rgba(240,122,32,0.25));
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--orange-dim);
  color: #fff;
  border: 1px solid var(--orange);
}

/* ── Sections ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 980px; margin: 0 auto; }
.section-label { color: var(--orange); }
.section-sub { max-width: 520px; }

/* ── Apps ── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

a.app-card { color: inherit; }
a.app-card:hover { text-decoration: none; }

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.app-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #1c2a1c;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.app-icon.terminal { background: #0d1f0d; }
.app-icon.coming-soon { background: #1a1a2e; }

.app-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.app-card-header .platform {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.app-card p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
}

.badge-live {
  background: #1a2e1a;
  color: var(--green);
  border: 1px solid #238636;
}

.badge-soon {
  background: #1a1a2e;
  color: #79c0ff;
  border: 1px solid #1f6feb;
}

.app-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

.app-link:hover { color: var(--yellow); text-decoration: none; }

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.value-card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Contact ── */
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-inner p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}
