/* Coordinal Static Site - Site-Specific Styles
 * =============================================
 * Styles specific to the static marketing site.
 * For shared styles, see shared/styles/
 */

/* ============================================
   Details Section (shared by pages)
   ============================================ */

.details {
  text-align: left;
}

.details h1,
.details h2,
.details p,
.details ol,
.details li {
  text-align: left;
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid var(--coordinal-border-light);
  margin: var(--coordinal-spacing-xl) 0;
}
/* ============================================
   Homepage - Waitlist Section
   ============================================ */

.waitlist-section {
  background-color: var(--coordinal-bg-primary);
  border: 2px solid var(--coordinal-border);
  border-radius: var(--coordinal-radius-none);
  padding: 40px;
  margin: 40px 0;
  box-shadow: var(--coordinal-shadow-md);
}

.waitlist-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--coordinal-text-primary);
  margin-bottom: 15px;
}

.waitlist-description {
  font-size: 1.1rem;
  color: var(--coordinal-text-primary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.waitlist-form {
  margin-top: 25px;
}

/* Spiral image */
.spiral-image {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* ============================================
   About Page - Dictionary Entry
   ============================================ */

.pronunciation {
  font-family: var(--coordinal-font-family-mono);
  margin: 0.5rem 0;
}

.sounds-like {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--coordinal-text-secondary);
}

.definition {
  margin-top: 1rem;
}

.definition ol {
  padding-left: 1.5rem;
}

.definition li {
  margin-bottom: 0.5rem;
}

/* ============================================
   About Page - Mission Section
   ============================================ */

.mission {
  margin: var(--coordinal-spacing-xl) 0;
  padding: var(--coordinal-spacing-lg) 0;
}

.mission p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--coordinal-spacing-lg);
  color: var(--coordinal-text-primary);
}

.mission ol {
  text-align: left;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.mission li {
  margin-bottom: 1rem;
}

/* ============================================
   SVG Graphics - Coordinal Visualization
   ============================================ */

.coordinal-graphic {
  max-width: 100%;
  padding: 1rem;
}

.coordinal-svg {
  max-width: 100%;
  height: auto;
  margin: var(--coordinal-spacing-xl) auto;
  display: block;
}

.svg-container {
  width: 100%;
  text-align: center;
  margin-bottom: var(--coordinal-spacing-xl);
}

.svg-container svg {
  display: inline-block;
  max-width: 100%;
}

/* SVG element styles */
.human-point {
  fill: var(--coordinal-ai-highlight);
}

.ai-point {
  fill: var(--coordinal-human-highlight);
}

.line {
  stroke: #2c3e50;
  stroke-width: 1.5;
}

.label {
  font-size: 10px;
  text-anchor: middle;
  font-family: serif;
}

.caption {
  font-size: 0.9rem;
  color: var(--coordinal-text-secondary);
  margin-top: 0.5rem;
}

/* ============================================
   Manifesto Page
   ============================================ */

.manifesto {
  padding: 60px 0;
}

.manifesto h1 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: var(--coordinal-spacing-xl);
}

.manifesto-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--coordinal-text-primary);
}

.manifesto-content h2 {
  text-align: center;
}

.manifesto-content p {
  margin-bottom: var(--coordinal-spacing-lg);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  box-shadow: var(--coordinal-shadow-md);
  border-radius: var(--coordinal-radius-md);
  margin: var(--coordinal-spacing-xl) 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
