/* Ed&Fritts Static Website Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 2.5rem;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-menu.active {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  gap: 1rem;
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-cta {
  background: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.nav-cta:hover {
  background: #1d4ed8;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #475569;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  padding: 4rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #dcfce7;
  color: #166534;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border: 1px solid #bbf7d0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  color: #2563eb;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-status {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-indicator {
  width: 0.75rem;
  height: 0.75rem;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Email Signup Card */
.signup-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.signup-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.signup-button {
  background: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.signup-button:hover {
  background: #1d4ed8;
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 3rem;
  height: 3rem;
  color: #10b981;
  margin: 0 auto 1rem;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-white {
  background: white;
}

.section-gray {
  background: #f8fafc;
}

.section-dark {
  background: #0f172a;
  color: white;
}

.section-blue {
  background: #2563eb;
  color: white;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: white;
}

.section-blue .section-title {
  color: white;
}

.section-description {
  font-size: 1.125rem;
  color: #475569;
  max-width: 32rem;
  margin: 0 auto;
}

.section-dark .section-description {
  color: #cbd5e1;
}

.section-blue .section-description {
  color: #dbeafe;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-dark {
  background: #1e293b;
  color: white;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-description {
  color: #64748b;
  line-height: 1.6;
}

.card-dark .card-description {
  color: #cbd5e1;
}

/* Problem/Solution Section */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.problem-solution img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.problem-list,
.solution-list {
  list-style: none;
  margin-top: 1rem;
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.problem-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: #ef4444;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.solution-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: #10b981;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Technology Page Styles */
.tech-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
}

.tech-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./assets/technology-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.tech-hero .container {
  position: relative;
  z-index: 1;
}

.tech-badge {
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.tech-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.tech-title .highlight {
  color: #60a5fa;
  display: block;
}

.tech-description {
  font-size: 1.25rem;
  color: #dbeafe;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto;
}

/* Technology Cards */
.tech-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.tech-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.tech-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tech-card-icon {
  background: #dbeafe;
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.tech-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.tech-card-content {
  flex: 1;
}

.tech-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tech-card-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tech-specs {
  list-style: none;
}

.tech-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.tech-specs li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: #2563eb;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Specifications Grid */
.spec-card {
  text-align: center;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.spec-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.spec-icon {
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.spec-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.spec-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.spec-label {
  font-size: 0.875rem;
  color: #64748b;
}

/* How It Works Section */
.how-it-works {
  max-width: 64rem;
  margin: 0 auto;
}

.how-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.how-step:nth-child(even) .how-visual {
  order: -1;
}

.how-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.how-step-icon {
  background: #fef3c7;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.how-step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #d97706;
}

.how-step-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.how-step-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.how-step-highlight {
  background: #fef3c7;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #92400e;
}

.how-visual {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
}

.how-visual svg {
  width: 4rem;
  height: 4rem;
  color: #d97706;
  margin-bottom: 1rem;
}

.how-metric {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.how-label {
  color: #64748b;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  text-align: center;
}

.about-badge {
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.about-title {
  font-size: 4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-title .highlight {
  color: #2563eb;
  display: block;
}

.about-description {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.6;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-year {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-year-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.about-year-label {
  font-size: 0.875rem;
  color: #64748b;
}

/* Mission/Vision Section */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-item,
.vision-item {
  margin-bottom: 2rem;
}

.mission-header,
.vision-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mission-icon,
.vision-icon {
  background: #dbeafe;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.mission-icon svg,
.vision-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.mission-title,
.vision-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
}

.mission-description,
.vision-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
}

.why-box {
  background: #dbeafe;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.why-description {
  color: #475569;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.value-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.value-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Timeline */
.timeline {
  max-width: 64rem;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-marker.current {
  background: #2563eb;
}

.timeline-marker.next {
  background: #10b981;
}

.timeline-marker.future {
  background: #64748b;
}

.timeline-content {
  flex: 1;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}

.timeline-year {
  background: #f1f5f9;
  color: #475569;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  border: 1px solid #e2e8f0;
}

.timeline-description {
  color: #64748b;
  line-height: 1.6;
}

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

.team-card {
  background: #1e293b;
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #334155;
}

.team-member {
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-role {
  color: #60a5fa;
  font-weight: 500;
}

.team-background {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

/* Advisory Board */
.advisory-card {
  background: #1e293b;
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #334155;
  text-align: center;
  display: inline-block;
}

.advisory-icon {
  width: 2rem;
  height: 2rem;
  color: #fbbf24;
  margin: 0 auto 0.75rem;
}

.advisory-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.advisory-description {
  color: #cbd5e1;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #64748b;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .problem-solution {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-text {
    text-align: left;
  }
  
  .mission-vision {
    grid-template-columns: 1fr 1fr;
  }
  
  .how-step {
    grid-template-columns: 1fr 1fr;
  }
  
  .signup-form {
    flex-direction: row;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .tech-title {
    font-size: 5rem;
  }
  
  .about-title {
    font-size: 5rem;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.p-4 {
  padding: 1rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.transition {
  transition: all 0.2s;
}

