@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap";

/* src/styles.css */
:root {
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-tertiary: #9CA3AF;
  --border-light: #E5E7EB;
  --border-medium: #D1D5DB;
  --accent-primary: #2563EB;
  --accent-hover: #1D4ED8;
  --font-sans:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --font-serif:
    "Playfair Display",
    Georgia,
    serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
.human-canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.editorial-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--text-primary);
}
.btn-solid {
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-solid:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border-medium);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--text-primary);
}
.btn-large {
  padding: 14px 28px;
  font-size: 15px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 0;
  border-bottom: 1px solid var(--border-light);
}
.hero-text-area {
  max-width: 600px;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  background: #EFF6FF;
  color: var(--accent-primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-title {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lms-mockup-container {
  width: 100%;
  height: 480px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  display: flex;
  position: relative;
}
.mockup-sidebar {
  width: 220px;
  background: #F9FAFB;
  border-right: 1px solid var(--border-light);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mockup-logo {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.mockup-nav-item.active {
  background: #EFF6FF;
  color: var(--accent-primary);
}
.nav-icon {
  width: 16px;
  height: 16px;
  background: currentColor;
  border-radius: 4px;
  opacity: 0.5;
}
.mockup-main {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bg-secondary);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-title {
  font-size: 18px;
  font-weight: 600;
}
.mockup-progress-bar {
  width: 120px;
  height: 6px;
  background: var(--border-light);
  border-radius: 100px;
  overflow: hidden;
}
.mockup-progress-fill {
  width: 68%;
  height: 100%;
  background: var(--accent-primary);
}
.mockup-video-player {
  width: 100%;
  height: 240px;
  background: #E5E7EB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mockup-video-play {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-video-play::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--text-primary);
  margin-left: 4px;
}
.mockup-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mockup-module-card {
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
.mockup-module-title {
  height: 8px;
  width: 60%;
  background: var(--border-medium);
  border-radius: 4px;
  margin-bottom: 8px;
}
.mockup-module-subtitle {
  height: 6px;
  width: 40%;
  background: var(--border-light);
  border-radius: 4px;
}
.mockup-ai-widget {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: float-ai 6s ease-in-out infinite;
  z-index: 10;
}
@keyframes float-ai {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.widget-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.widget-header::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}
.widget-bubble {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.4;
}
.widget-bubble.user {
  background: #F3F4F6;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.widget-bubble.ai {
  background: #EFF6FF;
  color: #1E40AF;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid #BFDBFE;
}
.feature-section {
  padding: 120px 0;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px auto;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(300px, auto));
  gap: 24px;
}
.bento-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.bento-item:hover {
  box-shadow: var(--shadow-lg);
}
.bento-item.wide {
  grid-column: span 2;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.bento-item.tall {
  grid-row: span 2;
}
.bento-content {
  max-width: 340px;
  z-index: 2;
}
.bento-content h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.bento-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.bento-mockup {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.chat-mockup {
  width: 280px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-message {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}
.mock-message.user {
  background: var(--text-primary);
  color: #FFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.mock-message.ai {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.video-mockup {
  margin-top: 32px;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(
      135deg,
      #E5E7EB 0%,
      #D1D5DB 100%);
}
.play-button {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--text-primary);
  margin-left: 4px;
}
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text-area {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-item.wide,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    flex-direction: column;
  }
  .bento-mockup {
    margin-top: 24px;
  }
}
.btn-primary {
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card {
  background: var(--bg-secondary);
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
