/* Tap Pause – Website styles (matches app: PrimaryBlue, AccentBlue, calm feel) */
:root {
  --primary: #0094FF;
  --primary-dark: #0077CC;
  --bg: #F6F8FA;
  --bg-bottom: #E3F1FB;
  --card: #FFFFFF;
  --text: #222B45;
  --text-muted: #6B7A90;
  --green: #00C48C;
  --teal: #00B4A8;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

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

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 48px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 148, 255, 0.35);
}

.cta-button:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.cta-button svg {
  width: 24px;
  height: 24px;
}

/* Features */
.features {
  padding: 40px 0 56px;
}

.features h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 32px;
  color: var(--text);
}

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

.feature-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 32px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Legal pages (privacy, terms) */
.legal-page {
  padding: 32px 0 64px;
}

.legal-page h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.legal-page .updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 12px;
}

.legal-page p, .legal-page ul {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1rem;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page a {
  color: var(--primary);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 24px;
}

.back-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}
