/* Context Website Styles */

/* CSS Variables */
:root {
  --primary: #228b22;
  --primary-hover: #1a6b1a;
  --bg-top: #0d0d26;
  --bg-bottom: #1a1433;
  --text: #ffffff;
  --text-secondary: #a0a0b8;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.1);
}

/* Reset and Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container */
.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  padding: 16px 0;
}

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

.header-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.header-logo:hover {
  color: var(--primary);
}

.header-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
}

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

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 80px;
}

.hero-content {
  max-width: 520px;
}

#breathing-orb {
  width: 200px;
  height: 200px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 980px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: scale(1.02);
}

/* Footer */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

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

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

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

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Privacy Policy Page Styles */
.page {
  flex: 1;
  padding: 40px 0 60px;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-meta {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.page-section {
  margin-bottom: 32px;
}

.page-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-section p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.page-section ul {
  list-style: none;
  padding: 0;
}

.page-section li {
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.page-section li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--primary);
}

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

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

.summary-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.summary-box p {
  color: var(--text);
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9375rem;
  }

  .footer .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-title {
    font-size: 1.75rem;
  }
}
