:root {
  /* Neurodivergent-friendly Dark Palette */
  /* Background: Soft dark slate, less harsh than pure black */
  --bg: #121418;

  /* Text: Soft off-white for good contrast without glare */
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;

  /* Accents: Muted, calming cool tones */
  --accent-primary: #818cf8; /* Soft Indigo */
  --accent-secondary: #2dd4bf; /* Soft Teal */

  /* Surface: Slightly lighter than bg for hierarchy */
  --surface: #1e2229;
  --surface-border: #334155;

  --max-w: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
}

body {
  background: var(--bg);
  color: var(--text-muted);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden; /* Kept for safety, though animations are gone */
}

/* Central Card */
.card {
  width: 100%;
  max-width: var(--max-w);
  padding: 48px;
  border-radius: 22px;
  /* Flat, solid surface for stability and readability */
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  text-align: center;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 24px;
  color: var(--text-main);
}
/* Removed .dot style as branding is now simpler */

h1 {
  font-size: 42px;
  margin: 24px 0 12px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
  /* Removed gradient text for better legibility */
}

p.lead {
  max-width: 720px;
  margin: 16px auto 32px;
  color: var(--text-muted);
  font-size: 18px;
}

/* Blockquote styles (if reused later) - simplified */
blockquote {
  margin: 32px auto;
  max-width: 800px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-main);
  border-left: 4px solid var(--accent-primary);
  padding-left: 20px;
}

.cta {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  border-radius: 8px; /* Slightly squarer for stability */
  background: var(--accent-primary);
  color: #fff; /* High contrast on indigo */
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.cta:hover {
  opacity: 0.9;
}

.value-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--surface-border);
}
.value-item strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 4px;
}

/* Products Section */
.products {
  margin-top: 56px;
  width: 100%;
  max-width: 700px; /* narrowed for better reading line length */
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.product-label {
  color: var(--accent-secondary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.product-card {
  background: rgba(255, 255, 255, 0.03); /* Extremely subtle tint */
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s ease;
}

.product-card:hover {
  border-color: var(--accent-primary);
}

.product-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.product-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.custom-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  margin-left: 24px;
}
.custom-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  margin-top: 64px;
  color: var(--text-muted);
  font-size: 13px;
  opacity: 0.8;
}
footer span {
  color: var(--text-muted);
}

.mandate-section {
  text-align: left;
  margin-top: 32px;
}
.mandate-section h2 {
  color: var(--accent-secondary);
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mandate-section p {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--text-main);
}

/* Responsive */
@media (max-width: 720px) {
  h1 {
    font-size: 32px;
  }
  .brand {
    font-size: 20px;
  }
  .page {
    padding: 24px 16px;
  }
  .card {
    padding: 32px 20px;
  }
  .product-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .product-link {
    margin-left: 0;
    margin-top: 8px;
    display: inline-block;
  }
}
