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

:root {
  --bg: #0d0f14;
  --surface: #161920;
  --border: #252830;
  --text: #e8eaf0;
  --muted: #7a7f91;
  --accent: #5b8dee;
  --accent-dim: #3a5fa8;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  text-decoration: underline;
}

/* Layout */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
}

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

nav a {
  font-size: 0.875rem;
  color: var(--muted);
  margin-left: 1.5rem;
}

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

.inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  flex: 1;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 4rem;
}

.site-footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

/* Sections */
section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Project card */
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.project-card .project-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.project-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(91, 141, 238, 0.15);
  color: var(--accent);
  border: 1px solid rgba(91, 141, 238, 0.3);
}

/* Privacy policy */
.policy-header {
  padding: 3rem 0 2rem;
}

.policy-header .breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.policy-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.policy-header .meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.policy-body {
  padding-bottom: 4rem;
}

.policy-body section {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.policy-body section h2 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.policy-body p,
.policy-body li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.policy-body ul {
  list-style: none;
  padding: 0;
}

.policy-body ul li::before {
  content: "– ";
  color: var(--accent);
}

.policy-body strong {
  color: var(--text);
  font-weight: 600;
}

/* Timani page */
.app-hero {
  padding: 4rem 0 3rem;
}

.app-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.app-hero .tagline {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.app-hero .coming-soon {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(91, 141, 238, 0.1);
  color: var(--accent);
  border: 1px solid rgba(91, 141, 238, 0.25);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-item .icon {
  font-size: 1.1rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-item strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 480px) {
  .site-footer .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
