/* Radiant-inspired Design System */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0a0a0a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Password Protection Overlay */
.password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.password-modal {
  text-align: center;
  padding: 3rem;
  max-width: 400px;
  width: 100%;
}

.password-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.password-modal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.password-modal p {
  color: #525252;
  margin-bottom: 1.5rem;
}

.password-modal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.password-modal input {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s;
}

.password-modal input:focus {
  border-color: #a78bfa;
}

.password-modal button {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: #0a0a0a;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.password-modal button:hover {
  background: #262626;
}

.password-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Hypothesis Button */
.hypothesis-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #525252;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
}

.hypothesis-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0a0a0a;
}

/* Hypothesis Modal */
.hypothesis-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.hypothesis-modal.active {
  opacity: 1;
  visibility: visible;
}

.hypothesis-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.2s;
}

.hypothesis-modal.active .hypothesis-modal-content {
  transform: scale(1);
}

.hypothesis-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #737373;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.hypothesis-modal-close:hover {
  color: #0a0a0a;
}

.hypothesis-modal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.hypothesis-coming-soon {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a78bfa;
  background: #f3e8ff;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.hypothesis-placeholder {
  color: #525252;
  line-height: 1.6;
}

/* Product card link styling */
.deck-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section with Gradient */
.hero-wrapper {
  position: relative;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  inset: 0.5rem;
  bottom: 0;
  border-radius: 2rem;
  background: linear-gradient(115deg, #fff1be 28%, #ee87cb 70%, #b060ff);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 0;
}

.navbar {
  position: relative;
  z-index: 10;
  padding: 1.5rem 0;
}

/* Floating Navbar */
.navbar-floating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar-floating.visible {
  transform: translateY(0);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #0a0a0a;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #0a0a0a;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-divider {
  width: 1px;
  height: 1.25rem;
  background: rgba(10, 10, 10, 0.2);
}

.mobile-menu .nav-divider {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-close span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background: #0a0a0a;
  border-radius: 2px;
  left: 4px;
  top: 15px;
}

.mobile-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
  transition: opacity 0.2s;
}

.mobile-menu a:hover {
  opacity: 0.7;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0 6rem;
  max-width: 900px;
}

.hero-title {
  font-size: 6rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.75);
  max-width: 32rem;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: #0a0a0a;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #333333;
}

.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(209, 80, 82, 0.15);
  font-size: 1rem;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  box-shadow: inset 0 0 2px 1px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Section Styles */
.section-gradient {
  background: #ffffff;
  padding: 8rem 0;
}

.benefits-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .benefits-title-hero {
    font-size: 3.75rem;
  }
}

.section-dark {
  background: #171717;
  margin: 0.5rem;
  border-radius: 2rem;
  padding: 4rem 0 8rem;
}

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

.section-header-left {
  text-align: left;
}

.section-header-left .section-heading,
.section-header-left .section-description {
  margin-left: 0;
  margin-right: 0;
}

.section-header-left .section-heading {
  font-size: 2rem;
}

.section-header-left .section-description {
  font-size: 1.25rem;
}

.how-title-spacing {
  margin-top: 6rem;
}

.section-heading {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 48rem;
  margin: 0 auto;
}

.section-subheading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
  margin-bottom: 0.5rem;
}

.section-subheading-dark {
  color: #a3a3a3;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.section-title-dark {
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}

.bento-container {
  padding-top: 4rem;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.bento-card-dark {
  background: #262626;
  border-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

/* Bento Card Sizes */
.bento-card-large {
  grid-column: span 3;
  min-height: 250px;
}

.bento-card-xlarge {
  grid-column: span 4;
  min-height: 400px;
}

.bento-card-medium {
  grid-column: span 2;
}

.bento-card-small {
  grid-column: span 2;
  min-height: 250px;
}

.bento-card-half {
  grid-column: span 3;
  min-height: 250px;
}

/* Gradient grid for Build better, faster section */
.bento-grid-gradient {
  background: linear-gradient(135deg, #fff1be 0%, #ee87cb 50%, #b060ff 100%);
  border-radius: 2.5rem;
  padding: 1rem;
}

.bento-grid-gradient .bento-card {
  background: rgba(255, 255, 255, 0.7);
}

/* Bento Card Content */
.bento-icon {
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.bento-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
  margin-bottom: 0.75rem;
}

.bento-card-dark .bento-eyebrow {
  color: #a3a3a3;
}

.bento-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.bento-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
}

.bento-card-dark .bento-description {
  color: #d4d4d4;
}

/* Bento Graphics */
.bento-graphic {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
}

.bento-graphic-code {
  background: 
    linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 50%, rgba(251, 146, 60, 0.15) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><text x="20" y="40" font-family="monospace" font-size="14" fill="%23000">resource "aws_lambda" {</text><text x="40" y="70" font-family="monospace" font-size="14" fill="%23000">  function_name = "api"</text><text x="40" y="100" font-family="monospace" font-size="14" fill="%23000">  runtime = "go1.x"</text><text x="20" y="130" font-family="monospace" font-size="14" fill="%23000">}</text></svg>') no-repeat;
  background-size: 100% 100%, 100% 70%;
  background-position: center, left -6.8rem top -7rem;
}

.bento-graphic-ai {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 50%, rgba(236, 72, 153, 0.2) 100%);
}

.bento-graphic-guardrails {
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(168, 85, 247, 0.15) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    );
}

.bento-graphic-automation {
  background: 
    linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(236, 72, 153, 0.15) 50%, rgba(168, 85, 247, 0.15) 100%),
    radial-gradient(circle at 30% 50%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
}

.bento-graphic-reliability {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 50%, rgba(5, 150, 105, 0.2) 100%);
}

.bento-graphic-security {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(249, 115, 22, 0.2) 50%, rgba(234, 88, 12, 0.2) 100%);
}

.bento-graphic-scaling {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.2) 50%, rgba(126, 34, 206, 0.2) 100%);
}

/* Bento Fade Effect */
.bento-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, #ffffff, transparent);
  pointer-events: none;
}

.bento-fade-top {
  top: 0;
  bottom: auto;
  background: linear-gradient(to bottom, #262626, transparent);
}

.bento-card-dark .bento-fade {
  background: linear-gradient(to top, #262626, transparent);
}

/* Section Light */
.section-light {
  padding: 8rem 0;
  background: #ffffff;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #525252;
  max-width: 42rem;
  margin: 0 auto;
}

/* Mission Section (Dark) */
.section-header-dark {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description-dark {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #a3a3a3;
  max-width: 42rem;
  margin: 2rem auto 0;
}

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

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.mission-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #d4d4d4;
}

/* Blog Section */
.section-blog {
  padding: 8rem 0;
  background: #ffffff;
}

.blog-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .blog-title-hero {
    font-size: 3.75rem;
  }
}

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

.blog-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid #e5e5e5;
  transition: all 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #d4d4d4;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #f0f0f0;
  color: #525252;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
}

.blog-date {
  font-size: 0.875rem;
  color: #999999;
  font-weight: 500;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.blog-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 1.5rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  transition: opacity 0.2s;
}

.blog-link:hover {
  opacity: 0.7;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Blog Post Page - Radiant Style */
.blog-post-page {
  background: #ffffff;
  min-height: 100vh;
  position: relative;
}

.blog-post-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blog-post-gradient-blur {
  position: absolute;
  top: 0;
  right: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(
    -10deg,
    #fff1be 0%,
    #fff1be 28%,
    #ee87cb 70%,
    #b060ff 100%
  );
  opacity: 0.4;
  filter: blur(80px);
  transform: rotate(-10deg) translateY(-40%);
}

.blog-post-header {
  position: relative;
  z-index: 10;
}

.blog-post-header .navbar {
  padding: 1.5rem 0;
}

.blog-post-main {
  position: relative;
  z-index: 10;
  padding: 2rem 0 6rem;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.blog-post-back:hover {
  color: #0a0a0a;
}

.blog-post-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .blog-post-article {
    grid-template-columns: 15rem 1fr 15rem;
    gap: 3rem;
  }
}

.blog-post-sidebar {
  order: 2;
}

@media (min-width: 1024px) {
  .blog-post-sidebar {
    order: 1;
  }
}

.blog-post-meta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
  .blog-post-meta-group {
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 6rem;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.blog-post-date {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  color: #737373;
  margin: 0;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-post-author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #ee87cb 0%, #b060ff 100%);
}

.blog-post-author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a0a0a;
}

.blog-post-category-wrapper {
  display: flex;
}

.blog-post-category-pill {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #f0f0f0;
  color: #525252;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
}

.blog-post-content {
  max-width: 42rem;
  order: 1;
}

@media (min-width: 1024px) {
  .blog-post-content {
    order: 2;
  }
}

.blog-post-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0a0a0a;
  margin: 0 0 2rem 0;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .blog-post-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-post-title {
    font-size: 3rem;
  }
}

.blog-post-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #404040;
  margin-bottom: 2rem;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.blog-post-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #404040;
  margin-bottom: 1.5rem;
}

.blog-post-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  list-style: none;
}

.blog-post-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: #404040;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1rem;
}

.blog-post-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 4px;
  height: 4px;
  background: #b060ff;
  border-radius: 50%;
}

.blog-post-content li strong {
  color: #0a0a0a;
  font-weight: 600;
}

.blog-post-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.blog-post-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.blog-post-cta-button:hover {
  background: #262626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-post-cta-button svg {
  opacity: 0.7;
}

/* Product Section */
.work-section {
  padding: 8rem 0;
  background: #f5f5f5;
}

.work-section-white {
  background: #ffffff;
}

.work-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .work-title-hero {
    font-size: 3.75rem;
  }
}

.work-intro {
  max-width: 48rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 3rem;
}

/* Mission Section */
.mission-section {
  padding: 8rem 0;
  background: #f5f5f5;
}

.mission-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .mission-title-hero {
    font-size: 3.75rem;
  }
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mission-statement {
  max-width: 48rem;
}

.mission-lead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .mission-lead {
    font-size: 2rem;
  }
}

.deck-what-section {
  margin-top: 0.5rem;
}

.deck-what-card {
  background: #ffffff !important;
  border: 1px solid #e5e5e5;
  border-radius: 1.5rem;
  padding: 2rem;
}

.deck-what-card-gray {
  background: #f9fafb !important;
}

.deck-what-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.deck-what-description {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

.deck-what-subtext {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #525252;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .mission-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mission-pillars {
    grid-template-columns: 1fr;
  }
}

.mission-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.mission-pillar-icon {
  color: #b060ff;
}

.mission-pillar-icon-innovation {
  color: #a78bfa;
}

.mission-pillar-icon-assurance {
  color: #ef4444;
}

.mission-pillar-icon-data {
  color: #4ade80;
}

.mission-pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
}

.mission-pillar-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #525252;
}

.mission-cta {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 3px solid #ffffff;
  text-align: center;
}

.mission-cta-text {
  font-size: 1.125rem;
  color: #525252;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  background: #ffffff;
}

.services-grid-wrapper {
  background: linear-gradient(135deg, #fff1be 0%, #ee87cb 50%, #b060ff 100%);
  border-radius: 2.5rem;
  padding: 1rem;
}

/* Services Collapsible */
.services-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #525252;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.services-toggle:hover {
  background: #ebebeb;
  color: #0a0a0a;
}

.services-toggle-icon {
  transition: transform 0.2s;
}

.services-expanded .services-toggle-icon {
  transform: rotate(180deg);
}

.services-collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.services-expanded .services-collapsible {
  max-height: 2000px;
  opacity: 1;
  margin-top: 1rem;
}

.services-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .services-title-hero {
    font-size: 3.75rem;
  }
}

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

.service-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(1),
.service-card:nth-child(7) {
  grid-column: span 2;
}

.service-icon {
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.service-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
  margin-bottom: 0.75rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
}

.services-cta {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 3px solid #f5f5f5;
  text-align: center;
}

.services-cta-text {
  font-size: 1.125rem;
  color: #525252;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(1),
  .service-card:nth-child(7) {
    grid-column: span 1;
  }
}

/* Company Intro Section */
.company-intro-section {
  padding: 8rem 0;
  background: #ffffff;
}

.company-intro-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .company-intro-title-hero {
    font-size: 3.75rem;
  }
}

.company-intro-content {
  max-width: 48rem;
}

.company-intro-lead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .company-intro-lead {
    font-size: 2rem;
  }
}

.company-intro-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #525252;
  margin-bottom: 1.5rem;
}

.company-intro-cta {
  margin-top: 2rem;
}

/* Team Section */
.team-section {
  padding: 8rem 0;
  background: #f5f5f5;
}

.team-section-white {
  background: #ffffff;
}

.team-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .team-title-hero {
    font-size: 3.75rem;
  }
}

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

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

.team-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.team-image-wrapper {
  flex-shrink: 0;
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f5f5f5;
}

.team-header-info {
  flex: 1;
}

.team-body {
  width: 100%;
}

@media (max-width: 640px) {
  .team-image {
    width: 80px;
    height: 80px;
  }
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 1rem;
  font-weight: 500;
  color: #b060ff;
  margin-bottom: 0;
}

.team-bio {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 1rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  color: #0077b5;
  transition: opacity 0.2s;
}

.team-linkedin:hover {
  opacity: 0.7;
}

/* Approach Section */
.approach-section {
  padding: 8rem 0;
  background: #ffffff;
}

.approach-section-grey {
  background: #f5f5f5;
}

.approach-title-hero {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .approach-title-hero {
    font-size: 3.75rem;
  }
}

.approach-group {
  margin-bottom: 3rem;
}

.approach-group:last-child {
  margin-bottom: 0;
}

.approach-group-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

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

.approach-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.approach-icon {
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.approach-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
  margin-bottom: 0.75rem;
}

.approach-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.approach-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
}

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

.product-showcase {
  width: 100%;
  margin: 0;
}

.product-showcase-wrapper {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0f172a;
}

.showcase-background {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: center -180px;
}

.showcase-overlay {
  display: none;
}

.showcase-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 4rem 4rem;
  background: #0f172a;
}

.showcase-text-content {
  max-width: 100%;
}

.product-showcase-name {
  font-size: 3.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.product-showcase-tagline {
  font-size: 1.75rem;
  font-weight: 500;
  color: #f1f5f9;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.product-showcase-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.opptora-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.opptora-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.opptora-feature-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #e2e8f0;
}

.opptora-feature-icon svg {
  width: 20px;
  height: 20px;
}

.opptora-feature-content {
  flex: 1;
}

.opptora-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.opptora-feature-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #94a3b8;
}

.btn-showcase {
  align-self: flex-start;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(168, 85, 250, 0.4);
}

.btn-showcase:hover {
  background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 50%, #f472b6 100%);
  box-shadow: 0 6px 20px rgba(168, 85, 250, 0.5);
}

@media (max-width: 768px) {
  .showcase-background {
    aspect-ratio: 16/9;
    object-position: center -50px;
  }

  .showcase-content {
    padding: 2rem;
  }

  .product-showcase-name {
    font-size: 2rem;
  }

  .product-showcase-tagline {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .product-showcase-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .opptora-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .btn-showcase {
    width: 100%;
    justify-content: center;
  }

}

/* Careers Section */
.careers-section {
  padding: 8rem 0;
  background: #ffffff;
}

.careers-eyebrow {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737373;
  margin-bottom: 0.5rem;
}

.careers-title {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .careers-title {
    font-size: 3.75rem;
  }
}

.careers-description {
  font-size: 1.5rem;
  font-weight: 500;
  color: #737373;
  max-width: 48rem;
  margin-bottom: 4rem;
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .careers-content {
    grid-template-columns: 1fr 24rem;
  }
}

.careers-listings {
  max-width: 42rem;
}

.listings-eyebrow {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737373;
  margin-bottom: 1.5rem;
}

.jobs-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

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

.job-category th {
  padding: 2.5rem 0 0 0;
}

.job-category-label {
  background: #f5f5f5;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 -1rem;
}

.job-row {
  border-bottom: 1px dotted #e5e5e5;
}

.job-row-last {
  border-bottom: none;
}

.job-row td {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.job-title {
  font-weight: 500;
  color: #0a0a0a;
}

.job-location {
  color: #737373;
}

.job-action {
  text-align: right;
}

.btn-job {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-job:hover {
  background: #f5f5f5;
}

.careers-testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 1;
}

@media (min-width: 640px) {
  .careers-testimonial {
    aspect-ratio: 5/4;
  }
}

@media (min-width: 1024px) {
  .careers-testimonial {
    aspect-ratio: 3/4;
  }
}

.testimonial-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent 75%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .testimonial-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 25%, transparent 75%);
  }
}

.testimonial-content {
  position: relative;
  padding: 2.5rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #ffffff;
}

.testimonial-quote::before {
  content: '"';
}

.testimonial-quote::after {
  content: '"';
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

.author-title {
  font-size: 0.875rem;
  font-weight: 500;
}

.gradient-text {
  background: linear-gradient(to right, #fff1be 28%, #ee87cb 70%, #b060ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  text-align: center;
  background: #f5f5f5;
}

.contact-section-white {
  background: #ffffff;
}

.contact-description {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #525252;
  max-width: 600px;
  margin: 2rem auto 3rem;
}

/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 4rem 0 2rem;
}

.footer-grey {
  background: #f5f5f5;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 600;
}

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

.footer-links a {
  text-decoration: none;
  color: #525252;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0a0a0a;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #737373;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bento-card-large,
  .bento-card-xlarge,
  .bento-card-medium,
  .bento-card-small,
  .bento-card-half {
    grid-column: span 6;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-heading {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .product-card {
    padding: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .bento-card {
    padding: 1.5rem;
  }
}

/* Forora Styles */
.product-showcase-forora {
  margin-top: 3rem;
}

.forora-wrapper {
  background: #1e3a5f;
  position: relative;
}

.forora-wrapper .showcase-background {
  aspect-ratio: 2.8/1;
  object-position: center 20%;
  object-fit: cover;
}

.forora-overlay-img {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 45%;
  width: auto;
  object-fit: contain;
  z-index: 1;
}

@media (max-width: 768px) {
  .forora-wrapper .showcase-background {
    aspect-ratio: unset;
    height: 285px;
  }

  .forora-overlay-img {
    height: 40%;
    top: 20%;
  }
}

.forora-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #1e3a5f 0%, #0d4f3c 40%, #1a5c4a 70%, #2d6a4f 100%);
}

.forora-name {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-forora {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.btn-forora:hover {
  background: linear-gradient(135deg, #86efac 0%, #67e8f9 50%, #93c5fd 100%);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
}

/* LegacyExpert Styles */
.product-showcase-legacy {
  margin-top: 3rem;
}

.legacy-wrapper {
  background: #0f172a;
  display: flex;
  flex-direction: column;
}

.legacy-logo-area {
  height: 435px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  overflow: hidden;
  position: relative;
}

.legacy-logo-img {
  max-height: 180%;
  width: auto;
  opacity: 1;
  transform: translateY(15%);
  position: relative;
  z-index: 1;
}

.legacy-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  min-height: 602px;
}

.legacy-name {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legacy-urgent {
  color: #ef4444;
}

.legacy-glow-container {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  overflow: hidden;
  pointer-events: none;
}

.legacy-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.legacy-glow-accent {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: #f59e0b;
}

.legacy-glow-danger {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: #ef4444;
}

.btn-legacy {
  background: #f59e0b;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-legacy:hover {
  background: #f97316;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

@media (max-width: 1024px) {
  .legacy-logo-area {
    height: 268px;
  }
}

@media (max-width: 768px) {
  .legacy-logo-area {
    height: 285px;
  }
}


/* Forora Intro Section */
.forora-intro-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.forora-intro-box {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.forora-intro-image {
  margin-bottom: -4rem;
}

.forora-intro-content {
  flex: 1;
}

.forora-intro-content .company-intro-title-hero {
  margin-bottom: 1rem;
}

.forora-intro-content .section-heading {
  margin-bottom: 1rem;
}

.forora-intro-content .section-description {
  margin: 0;
}

.forora-intro-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.forora-hero-img {
  height: 420px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .forora-intro-box {
    flex-direction: column;
    padding: 0;
    align-items: center;
  }

  .forora-intro-image {
    order: 1;
    margin-bottom: -4rem;
  }

  .forora-hero-img {
    height: 250px;
  }
}

/* SheetGenius Styles */
.product-showcase-sheetgenius {
  margin-top: 3rem;
}

.sheetgenius-wrapper {
  position: relative;
  background: #1e3a5f;
}

.sheetgenius-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #0d4f3c 40%, #1a5c4a 70%, #2d6a4f 100%);
  border-radius: 2rem;
  z-index: 0;
}

.sheetgenius-content {
  position: relative;
  z-index: 1;
  background: transparent;
}

.sheetgenius-name {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-sheetgenius {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.btn-sheetgenius:hover {
  background: linear-gradient(135deg, #86efac 0%, #67e8f9 50%, #93c5fd 100%);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
}

/* SheetGenius Hero Page */
.sheetgenius-hero .gradient-bg,
.sheetgenius-gradient {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
}

/* SheetGenius Bento Grid */
.bento-grid-sheetgenius {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
  border-radius: 2.5rem;
  padding: 1rem;
}

.bento-grid-sheetgenius .bento-card {
  background: rgba(255, 255, 255, 0.85);
}

/* SheetGenius CTA Section */
.sheetgenius-cta {
  background: linear-gradient(135deg, #1e3a5f 0%, #0d4f3c 50%, #1a5c4a 100%);
}

.sheetgenius-cta .section-heading {
  color: #ffffff;
}

.sheetgenius-cta .contact-description {
  color: #d1fae5;
}

/* Use Case Grid */
.usecase-grid-wrapper {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
  border-radius: 2.5rem;
  padding: 1rem;
  margin-top: 3rem;
}

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

.usecase-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.usecase-icon {
  color: #0d4f3c;
  margin-bottom: 1rem;
}

.usecase-icon-text {
  font-size: 2rem;
  font-weight: 700;
}

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

.usecase-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
}

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

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
  color: #0a0a0a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Powered By Section */
.powered-by-content {
  max-width: 48rem;
}

.powered-by-text .section-heading {
  margin-bottom: 1.5rem;
}

.powered-by-text .section-description {
  margin: 0;
}

/* Investor Deck Styles */
.deck-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.deck-stat-card {
  background: linear-gradient(135deg, rgba(255, 241, 190, 0.3) 0%, rgba(238, 135, 203, 0.3) 50%, rgba(176, 96, 255, 0.3) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.deck-stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.deck-stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #525252;
}

@media (max-width: 768px) {
  .deck-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .deck-stat-number {
    font-size: 2.5rem;
  }
}

/* Product Categories */
.deck-product-category {
  margin-top: 3rem;
}

.deck-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

.deck-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck-category-icon-innovation {
  color: #a78bfa;
}

.deck-category-icon-assurance {
  color: #ef4444;
}

.deck-category-icon-data {
  color: #4ade80;
}

.deck-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.deck-product-card {
  display: block;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.deck-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #d4d4d4;
}

.deck-product-header {
  margin-bottom: 1rem;
}

.deck-product-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.75rem;
}

.deck-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deck-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.deck-badge-stage {
  background: #f0f0f0;
  color: #525252;
}

.deck-badge-channel {
  background: #e0e7ff;
  color: #4338ca;
}

.deck-product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
}

/* Product card color accents */
.deck-product-opptora {
  border-left: 4px solid #a78bfa;
}

.deck-product-legacy {
  border-left: 4px solid #f59e0b;
}

.deck-product-tripwires {
  border-left: 4px solid #ef4444;
}

.deck-product-secronyx {
  border-left: 4px solid #06b6d4;
}

.deck-product-forora {
  border-left: 4px solid #4ade80;
}

.deck-product-openwebui {
  border-left: 4px solid #8b5cf6;
}

/* Go-to-market grid */
.deck-gtm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.deck-gtm-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.deck-gtm-icon {
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.deck-gtm-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.deck-gtm-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 1.5rem;
}

.deck-gtm-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deck-gtm-product {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #f0f0f0;
  color: #525252;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  .deck-gtm-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Roadmap Swimlane */
.deck-swimlane {
  margin-top: 3rem;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.deck-swimlane-header {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
  background: #f9fafb;
  border-bottom: 2px solid #e5e5e5;
}

.deck-swimlane-label-cell {
  padding: 1.25rem;
  border-right: 1px solid #e5e5e5;
}

.deck-swimlane-period {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid #e5e5e5;
}

.deck-swimlane-period:last-child {
  border-right: none;
}

.deck-swimlane-period-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a0a;
}

.deck-swimlane-period-months {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #737373;
  margin-top: 0.125rem;
}

.deck-swimlane-period-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
}

.deck-swimlane-row {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
  border-bottom: 1px solid #e5e5e5;
}

.deck-swimlane-row:last-child {
  border-bottom: none;
}

/* Row group for spanning label */
.deck-swimlane-row-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #e5e5e5;
}

.deck-swimlane-row-group .deck-swimlane-label-span {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a0a;
  background: #f9fafb;
  border-right: 1px solid #e5e5e5;
}

.deck-swimlane-row-group-content {
  display: flex;
  flex-direction: column;
}

.deck-swimlane-row-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.deck-swimlane-row-group .deck-swimlane-cell {
  border-left: 1px solid #e5e5e5;
}

.deck-swimlane-row-group .deck-swimlane-cell:first-child {
  border-left: none;
}

.deck-swimlane-cell-span {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: white;
  border-left: none;
}

.deck-swimlane-cell-span .deck-swimlane-item {
  width: 100%;
}

.deck-swimlane-span-row {
  background: white;
}

.deck-swimlane-cell-span-2 {
  grid-column: span 2;
}

.deck-swimlane-cell-span-3 {
  grid-column: span 3;
}

.deck-swimlane-cell-span-4 {
  grid-column: span 4;
}

/* 2-column swimlane variant */
.deck-swimlane-2col .deck-swimlane-header,
.deck-swimlane-2col .deck-swimlane-row {
  grid-template-columns: 180px repeat(2, 1fr);
}

.deck-swimlane-2col .deck-swimlane-row-inner {
  grid-template-columns: repeat(2, 1fr);
}

/* 3-column swimlane variant */
.deck-swimlane-3col .deck-swimlane-header,
.deck-swimlane-3col .deck-swimlane-row {
  grid-template-columns: 180px repeat(3, 1fr);
}

.deck-swimlane-3col .deck-swimlane-row-inner {
  grid-template-columns: repeat(3, 1fr);
}

.deck-swimlane-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0a;
  background: #f9fafb;
  border-right: 1px solid #e5e5e5;
}

.deck-swimlane-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0a;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e5e5;
}

.deck-swimlane-label-product {
  padding: 0.75rem 1.25rem;
  align-items: stretch;
}

.deck-swimlane-product-name {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  background: white;
  border-radius: 0.5rem;
  border-left: 3px solid #d4d4d4;
  box-sizing: border-box;
}

.deck-swimlane-product-name.label-opptora {
  border-left-color: #a78bfa;
}

.deck-swimlane-product-name.label-legacy {
  border-left-color: #fbbf24;
}

.deck-swimlane-product-name.label-tripwires {
  border-left-color: #ef4444;
}

.deck-swimlane-product-name.label-secronyx {
  border-left-color: #22d3ee;
}

.deck-swimlane-product-name.label-forora {
  border-left-color: #4ade80;
}

.deck-swimlane-product-name.label-openwebui {
  border-left-color: #a78bfa;
}

.deck-swimlane-product-name.label-levantar {
  border-left-color: #f472b6;
}

.deck-swimlane-category-icon-corporate {
  color: rgb(244, 114, 182);
}

.deck-swimlane-category-icon-innovation {
  color: #a78bfa;
}

.deck-swimlane-category-icon-assurance {
  color: #ef4444;
}

.deck-swimlane-category-icon-data {
  color: #4ade80;
}

.deck-timeline-levantar {
  border-left-color: #f97316;
}

.deck-swimlane-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck-swimlane-row:nth-child(2) .deck-swimlane-category-icon {
  color: #a78bfa;
}

.deck-swimlane-row:nth-child(3) .deck-swimlane-category-icon {
  color: #ef4444;
}

.deck-swimlane-row:nth-child(4) .deck-swimlane-category-icon {
  color: #4ade80;
}

.deck-swimlane-cell {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-right: 1px solid #e5e5e5;
}

.deck-swimlane-cell:last-child {
  border-right: none;
}

.deck-swimlane-cell-empty {
  justify-content: center;
  align-items: center;
}

.deck-swimlane-tbd {
  font-size: 0.8125rem;
  font-style: italic;
  color: #a3a3a3;
}

.deck-swimlane-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border-left: 3px solid #e5e5e5;
}

.deck-swimlane-item-spacer {
  visibility: hidden;
}

.deck-swimlane-item.deck-timeline-opptora {
  border-left-color: #a78bfa;
}

.deck-swimlane-item.deck-timeline-forora {
  border-left-color: #4ade80;
}

.deck-swimlane-item.deck-timeline-legacy {
  border-left-color: #f59e0b;
}

.deck-swimlane-item.deck-timeline-tripwires {
  border-left-color: #ef4444;
}

.deck-swimlane-item.deck-timeline-secronyx {
  border-left-color: #06b6d4;
}

.deck-swimlane-item.deck-timeline-openwebui {
  border-left-color: #8b5cf6;
}

.deck-swimlane-group-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #374151;
}

.deck-swimlane-group-header .group-header-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.deck-swimlane-group-header:first-child {
  margin-top: 0;
}

.deck-swimlane-group-header.group-header-innovation {
  color: #a78bfa;
}

.deck-swimlane-group-header.group-header-assurance {
  color: #f59e0b;
}

.deck-swimlane-group-header.group-header-data {
  color: #4ade80;
}

.deck-swimlane-group-header.group-header-tripwires {
  color: #ef4444;
}

.deck-swimlane-group-header.group-header-secronyx {
  color: #06b6d4;
}

.deck-swimlane-group-header.group-header-openwebui {
  color: #8b5cf6;
}

.deck-swimlane-product {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0a0a0a;
}

.deck-swimlane-milestone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  color: #525252;
}

.deck-swimlane-milestone .platform-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.deck-swimlane-milestone .platform-icon-linkedin {
  color: #0a66c2;
}

.deck-swimlane-milestone .platform-icon-google {
  color: #4285f4;
}

@media (max-width: 1024px) {
  .deck-swimlane {
    overflow-x: auto;
  }

  .deck-swimlane-header,
  .deck-swimlane-row {
    min-width: 900px;
  }
}

/* Product Roadmap Timeline (legacy) */
.deck-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.deck-timeline-quarter {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}

.deck-timeline-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e5e5;
}

.deck-timeline-period {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
}

.deck-timeline-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
}

.deck-timeline-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deck-timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 3px solid #e5e5e5;
}

.deck-timeline-product {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a0a;
}

.deck-timeline-milestone {
  font-size: 0.875rem;
  color: #525252;
}

/* Timeline color accents */
.deck-timeline-opptora {
  border-left-color: #a78bfa;
}

.deck-timeline-forora {
  border-left-color: #4ade80;
}

.deck-timeline-legacy {
  border-left-color: #f59e0b;
}

.deck-timeline-tripwires {
  border-left-color: #ef4444;
}

.deck-timeline-secronyx {
  border-left-color: #06b6d4;
}

.deck-timeline-consulting {
  border-left-color: #8b5cf6;
}

.deck-timeline-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px dashed #e5e5e5;
}

.deck-timeline-group-label:first-child {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .deck-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .deck-timeline {
    grid-template-columns: 1fr;
  }
}

/* Marketing Roadmap Timeline */
.deck-marketing-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.deck-marketing-quarter {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e5e5e5;
}

.deck-marketing-period {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e5e5;
}

.deck-marketing-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.deck-marketing-channel {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
}

.deck-channel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e5e5;
}

.deck-channel-google {
  border-bottom-color: #4285f4;
}

.deck-channel-google svg {
  color: #4285f4;
}

.deck-channel-linkedin {
  border-bottom-color: #0077b5;
}

.deck-channel-linkedin svg {
  color: #0077b5;
}

.deck-channel-social {
  border-bottom-color: #0a0a0a;
}

.deck-channel-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.deck-channel-items li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #525252;
  padding-left: 1rem;
  position: relative;
}

.deck-channel-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  background: #b060ff;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .deck-marketing-channels {
    grid-template-columns: 1fr;
  }
}
