/* =============================================================================
   Minimal Dark Theme
   Colors: Navy #0a192f, Teal #64ffda, Light #e6f1ff, Muted #8892b0
   ============================================================================= */

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

:root {
  --color-bg: #0a192f;
  --color-bg-light: #112240;
  --color-accent: #64ffda;
  --color-text: #e6f1ff;
  --color-text-muted: #8892b0;
  --color-text-dark: #ccd6f6;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'Fira Code', 'SF Mono', Monaco, 'Andale Mono', monospace;
  --max-width: 1200px;
  --nav-height: 70px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================================================
   Typography
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-muted);
}

/* =============================================================================
   Layout
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  flex: 1;
}

section {
  padding: 5rem 0;
}

/* =============================================================================
   Navigation
   ============================================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-mono);
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.hero-description {
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
}

.btn:hover {
  background: rgba(100, 255, 218, 0.1);
  opacity: 1;
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
}

/* =============================================================================
   Cards & Sections
   ============================================================================= */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.card {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* =============================================================================
   About Page
   ============================================================================= */

.about-content {
  display: grid;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  display: flex;
}

.card.storm-card {
  padding: 0;
  border: none;
  overflow: hidden;
  min-height: 280px;
  flex: 1;
  border-radius: 8px;
}

.card.storm-card canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* =============================================================================
   Products Page
   ============================================================================= */

.product-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
}

.product-card .btn {
  margin-top: auto;
}

.product-card .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(100, 255, 218, 0.1);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.product-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Product detail cards (products page) */
.product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-header h2 {
  margin: 0;
}

.product-header .tag {
  display: inline-block;
  background: rgba(100, 255, 218, 0.1);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.product-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.product-section-title {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.product-section-title:first-of-type {
  margin-top: 0;
}

.feature-tile {
  padding: 1rem;
  background: var(--color-bg);
  border-radius: 4px;
}

.feature-tile .feature-name {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.feature-tile .feature-desc {
  font-size: 0.875rem;
  margin: 0;
  color: var(--color-text-muted);
}

.product-audience {
  list-style: none;
  margin: 0;
}

.product-audience-item {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.product-audience-item:last-child {
  margin-bottom: 0;
}

.product-audience-item .text-accent {
  margin-right: 0.5rem;
}

.product-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
}

/* =============================================================================
   Contact Form
   ============================================================================= */

.contact-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2rem);
}

.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h1 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg-light);
  border: 1px solid rgba(100, 255, 218, 0.2);
  border-radius: 4px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* Honeypot field - hidden from users */
.hp-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.form-status.error {
  display: block;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid #ff6b6b;
  color: #ff6b6b;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
  margin-top: auto;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

/* =============================================================================
   Coming Soon / Placeholder
   ============================================================================= */

.coming-soon {
  text-align: center;
  padding: 8rem 0;
}

.coming-soon h1 {
  margin-bottom: 1rem;
}

.coming-soon p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* =============================================================================
   404 Page
   ============================================================================= */

#deep-sea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.error-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--color-accent);
  margin-bottom: 0;
  line-height: 1;
}

.error-page h2 {
  margin-bottom: 1rem;
}

.error-page p {
  margin-bottom: 2rem;
}

/* =============================================================================
   Page Header (for inner pages)
   ============================================================================= */

.page-header {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================================================
   Utilities
   ============================================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* =============================================================================
   Nav 8-item fix
   ============================================================================= */

@media (min-width: 769px) and (max-width: 1200px) {
  .nav-links {
    gap: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 950px) {
  .nav-links {
    gap: 0.75rem;
  }
  .nav-links a {
    font-size: 0.825rem;
  }
}

/* =============================================================================
   Metrics Bar
   ============================================================================= */

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* =============================================================================
   Service Cards
   ============================================================================= */

.service-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.service-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

/* =============================================================================
   Service Detail Sections
   ============================================================================= */

.service-detail {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.service-detail h2 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.service-detail h3 {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 1rem;
}

.service-detail li {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-detail li::before {
  content: '→';
  color: var(--color-accent);
  position: absolute;
  left: 0;
}

.service-tech {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
}

/* =============================================================================
   Engagement Models
   ============================================================================= */

.engagement-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.engagement-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.engagement-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.engagement-card h3 {
  color: var(--color-accent);
  font-size: 1.125rem;
}

/* =============================================================================
   Case Study Layout
   ============================================================================= */

.case-study {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.case-study-header h2 {
  margin-bottom: 0.5rem;
}

.case-study-header p {
  font-size: 1.125rem;
  color: var(--color-text-dark);
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.case-study-stat {
  text-align: center;
}

.case-study-stat .metric-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.case-study-section {
  margin-top: 2rem;
}

.case-study-section h3 {
  color: var(--color-accent);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.case-study-section ul {
  list-style: none;
  margin-bottom: 1rem;
}

.case-study-section li {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.case-study-section li::before {
  content: '→';
  color: var(--color-accent);
  position: absolute;
  left: 0;
}

.case-study-results {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.case-study-results th,
.case-study-results td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.case-study-results th {
  color: var(--color-accent);
  font-size: 0.875rem;
  font-family: var(--font-mono);
}

.case-study-results td {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* =============================================================================
   Tech Callouts (Product Cards)
   ============================================================================= */

.tech-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.tech-badge {
  display: inline-block;
  background: rgba(100, 255, 218, 0.08);
  color: var(--color-accent);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

/* =============================================================================
   Tech Table (About Page)
   ============================================================================= */

.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.tech-table th,
.tech-table td {
  text-align: left;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.tech-table th {
  color: var(--color-accent);
  font-size: 0.875rem;
  font-family: var(--font-mono);
  width: 140px;
  vertical-align: top;
}

.tech-table td {
  color: var(--color-text-muted);
}

/* =============================================================================
   CTA Section
   ============================================================================= */

.cta-section {
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   Featured Case Study (Homepage)
   ============================================================================= */

.featured-case-study {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid rgba(100, 255, 218, 0.1);
  max-width: 800px;
  margin: 0 auto;
  transition: border-color 0.2s ease;
}

.featured-case-study:hover {
  border-color: var(--color-accent);
}

.featured-case-study h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* =============================================================================
   Personal Projects (About Page)
   ============================================================================= */

.personal-projects {
  list-style: none;
  margin: 1rem 0;
}

.personal-projects li {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.personal-projects li::before {
  content: '→';
  color: var(--color-accent);
  position: absolute;
  left: 0;
}

.personal-projects strong {
  color: var(--color-text);
}

/* =============================================================================
   Select Dropdown (Contact Form)
   ============================================================================= */

.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg-light);
  border: 1px solid rgba(100, 255, 218, 0.2);
  border-radius: 4px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238892b0' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =============================================================================
   Solutions Page
   ============================================================================= */

.pain-point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pain-point-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pain-point-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.pain-point-card .pain-icon {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pain-point-card p {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 1.05rem;
  line-height: 1.5;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.solution-card h3 {
  margin-bottom: 0.75rem;
}

.solution-card p {
  flex: 1;
}

.solution-card .solution-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-top: auto;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.coverage-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(100, 255, 218, 0.1);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.coverage-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.coverage-card .coverage-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.coverage-card h3 {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.solutions-callout {
  border: 2px dashed rgba(100, 255, 218, 0.3);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto 0;
}

.solutions-callout p {
  margin: 0 0 0.75rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

.solutions-callout a {
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
