/* Kit Workflows Website Styles - Navy + Moss Brand System */

/* CSS Variables - Brand Colors */
:root {
  /* Neutrals */
  --app-background: #F6F8F7;
  --surface: #FFFFFF;
  --surface-2: #EFF3F1;
  --surface-3: #E6ECE8;
  --border: #D3DBD6;

  /* Text */
  --text-primary: #0A1628;
  --text-secondary: #3B4A5C;
  --text-muted: #64748B;
  --text-disabled: #94A3B8;

  /* Moss Accent Scale */
  --accent-50: #F1F8F3;
  --accent-100: #DFF1E3;
  --accent-200: #BFE3C7;
  --accent-300: #93CFA1;
  --accent-400: #5FB37A;
  --accent-500: #3F8F5F;
  --accent-600: #2F6F4A;
  --accent-700: #24563A;
  --accent-800: #1B3F2B;

  /* Status */
  --success: #15803D;
  --success-soft: #DCFCE7;
  --warning: #CA8A04;
  --warning-soft: #FEF9C3;
  --error: #DC2626;
  --error-soft: #FEE2E2;
  --info: #1E40AF;
  --info-soft: #DBEAFE;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
  --shadow-md: 0 4px 6px rgba(10, 22, 40, 0.07);
  --shadow-lg: 0 10px 15px rgba(10, 22, 40, 0.1);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--app-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: var(--spacing-md) 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 28px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent-600);
}

.header-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.header-cta .btn {
  height: 40px;
  padding: 10px 20px;
  font-size: 14px;
  box-sizing: border-box;
  line-height: 1.4;
}

.header-microcopy {
  font-size: 12px;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-family);
}

.btn-primary {
  background: var(--accent-500);
  color: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--accent-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-3);
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, var(--app-background) 0%, var(--surface) 100%);
}

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

.hero-headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets {
  margin-bottom: var(--spacing-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullet-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all 0.2s ease;
}

.hero-bullet-item:hover {
  border-color: var(--accent-300);
  background: var(--accent-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-bullet-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.hero-bullet-text {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.hero-cta {
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.trust-microcopy {
  margin-top: var(--spacing-sm);
  font-size: 13px;
  color: var(--text-muted);
}

.hero-visual {
  margin-top: var(--spacing-2xl);
}

.demo-video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Placeholder Visuals */
.placeholder-visual {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
  color: var(--text-muted);
}

.placeholder-visual p:first-child {
  font-size: 32px;
  margin-bottom: var(--spacing-xs);
}

.placeholder-note {
  font-size: 14px;
  color: var(--text-muted);
}

.placeholder-visual.small {
  padding: var(--spacing-lg);
}

.placeholder-visual.small p:first-child {
  font-size: 24px;
}

.placeholder-visual.tiny {
  padding: var(--spacing-md);
  max-width: 120px;
}

.placeholder-visual.tiny p {
  font-size: 32px;
}

/* Social Proof Strip */
.social-proof {
  padding: var(--spacing-xl) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.social-proof-text {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
  font-size: 16px;
  font-weight: 500;
}

.social-proof-subtext {
  color: var(--text-muted);
  font-size: 14px;
}

/* Section Base Styles */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-headline {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-align: center;
  color: var(--text-primary);
}

.section-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.section-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.section-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.playful-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--spacing-md);
}

/* Problem Section - Progress Bar Animation */
.problem-progress {
  max-width: 700px;
  margin: var(--spacing-2xl) auto;
}

.problem-progress-container {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.problem-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.problem-progress-status {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.problem-progress-percent {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-500);
}

.problem-progress-bar-container {
  width: 100%;
  height: 32px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--border);
}

.problem-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-500) 0%, var(--accent-400) 100%);
  border-radius: var(--radius-md);
  transition: width 0.8s ease, background 0.3s ease;
  position: relative;
  width: 0%;
}

.problem-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 1.5s ease-in-out infinite;
}


@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.problem-progress-footer {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  justify-content: center;
}

.problem-progress-icon {
  font-size: 20px;
  line-height: 1;
}

.problem-progress-time {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.problem-progress-label {
  text-align: center;
  margin-top: var(--spacing-lg);
  font-size: 18px;
  font-weight: 600;
  color: var(--warning);
  font-style: italic;
}

/* Outcome Cards */
.outcome-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.outcome-card {
  background: var(--surface);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: left;
}

.outcome-icon {
  margin-bottom: var(--spacing-md);
}

.outcome-icon img {
  width: 48px;
  height: 48px;
}

.outcome-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.outcome-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-500);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

/* Differentiation List */
.diff-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.diff-list li {
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--text-secondary);
}

.diff-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-500);
  font-weight: 700;
  font-size: 20px;
}

/* Comparison Table */
.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: var(--spacing-md);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--surface-2);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.comparison-table td {
  color: var(--text-secondary);
  font-size: 20px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-size: 14px;
}

.comparison-table th:last-child {
  background: var(--accent-50);
  color: var(--accent-700);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Use Case Grid */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.use-case {
  background: var(--surface);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.use-case-icon {
    margin-bottom: var(--spacing-md);
}

.use-case-icon img {
  width: 48px;
  height: 48px;
}

.use-case-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.use-case-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

/* Founder Section */
.founder-content {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
  display: flex;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.founder-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-md);
}

.founder-info {
  text-align: center;
}

.founder-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-size: 15px;
}

.founder-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.founder-story-text {
  flex: 1;
  text-align: left;
}

.founder-story-headline {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.founder-story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Pricing */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  position: relative;
}

.pricing-card-featured {
  border: 2px solid var(--accent-500);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-500);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
}

.pricing-tier {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.pricing-amount {
  margin-bottom: var(--spacing-lg);
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
}

.period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.pricing-features li {
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-500);
  font-weight: 600;
}

.pricing-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.credits-note {
  text-align: center;
  margin-top: var(--spacing-lg);
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.faq-item {
  background: var(--surface);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Waitlist Form */
.section-cta {
  background: linear-gradient(180deg, var(--surface) 0%, var(--accent-50) 100%);
  border-top: 1px solid var(--border);
}

.waitlist-form {
  max-width: 600px;
  margin: var(--spacing-xl) auto 0;
}

.form-group {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.form-input {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  font-family: var(--font-family);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px var(--accent-100);
}

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

.form-microcopy {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.form-message {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background: var(--success-soft);
  color: var(--success);
  border: 1px solid var(--success);
}

.form-message.error {
  display: block;
  background: var(--error-soft);
  color: var(--error);
  border: 1px solid var(--error);
}

/* Footer */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.footer-text {
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-attribution {
  color: var(--text-muted);
  font-size: 11px;
  margin-top: var(--spacing-xs);
}

.footer-attribution a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-attribution a:hover {
  color: var(--text-secondary);
  text-decoration: underline;
}

.table-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .header-cta .btn {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .logo-image {
    height: 24px;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .problem-progress-container {
    padding: var(--spacing-lg);
  }

  .problem-progress-header {
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: flex-start;
  }

  .problem-progress-percent {
    font-size: 20px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .section-headline {
    font-size: 28px;
  }

  .outcome-cards,
  .steps,
  .use-case-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .founder-content {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
  }

  .founder-story-text {
    text-align: center;
  }

  .founder-story-headline {
    text-align: center;
    font-size: 28px;
  }

  .form-group {
    flex-direction: column;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 28px;
  }

  .section-headline {
    font-size: 24px;
  }
}


