/* 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;
}

.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-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;
  }
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 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: 1rem;
}

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

.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-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;
}
