/* ==========================================================================
   Section Divider Styles
   ========================================================================== */

/* Curved Section Divider Styles */
.section-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 2;
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
}

/* ==========================================================================
   Combined Action & Launch Section
   ========================================================================== */
.action-section {
  background: #F8FAFC;
  padding: 6rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.action-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 5;
}

.action-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.action-header .section-title {
  color: #0F172A;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  font-family: var(--font-display, 'Inter', sans-serif);
}

.action-header .section-subtitle {
  color: #475569;
  font-size: 1.125rem;
  font-family: var(--font-body, 'Inter', sans-serif);
}

/* Showcase grid layout (Desktop: Card side-by-side with Laptop mockup) */
.action-showcase-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 5;
  margin-bottom: -50px; /* Pull down to overlap the curved green object */
}

@media (min-width: 900px) {
  .action-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: -70px;
  }
}

/* Floating Early Access Card styling (light elegant design) */
.floating-cta-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 20px 40px -4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  z-index: 12;
  position: relative;
}

.floating-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 15px -3px rgba(0, 0, 0, 0.03),
    0 25px 50px -8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 900px) {
  .floating-cta-card {
    margin-right: -4rem; /* Overlap the laptop mockup on the left */
  }
}

@media (max-width: 899px) {
  .floating-cta-card {
    order: 2; /* Move below the laptop on mobile/tablet screens */
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
}

.floating-cta-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #014A36;
  background: rgba(1, 74, 54, 0.08);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.floating-cta-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #B5E97E;
  color: #0F172A;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(181, 233, 126, 0.20);
}

.floating-cta-btn:hover {
  background: #c7f296;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(181, 233, 126, 0.35);
}

.floating-cta-btn svg {
  transition: transform 0.2s ease;
}

.floating-cta-btn:hover svg {
  transform: translateX(3px);
}

/* Laptop Mockup Styles */
.laptop-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

@media (max-width: 899px) {
  .laptop-wrapper {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
}

.laptop-mockup {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.laptop-screen {
  position: relative;
  width: 88%;
  aspect-ratio: 16 / 10;
  background: #1e1e1e;
  border: 10px solid #111111;
  border-bottom: 14px solid #111111;
  border-radius: 16px 16px 0 0;
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Laptop Screen reflection glare */
.laptop-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
  z-index: 5;
}

/* Webcam dot */
.laptop-screen::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #111;
  border-radius: 50%;
  z-index: 6;
}

.laptop-base {
  position: relative;
  width: 100%;
  height: 12px;
  background: linear-gradient(to bottom, #d2d2d2 0%, #b4b4b4 40%, #7e7e7e 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 6;
}

/* Center groove notch for opening lid */
.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #111111;
  border-radius: 0 0 4px 4px;
}

/* Laptop Hover overlays (Request Live Demo) */
.platform-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 74, 54, 0.4);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  pointer-events: none;
  z-index: 10;
}

.laptop-screen:hover .platform-overlay {
  opacity: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}

.platform-cta {
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(123, 234, 92, 0.3);
  background: var(--brand-green) !important;
  color: var(--brand-navy) !important;
  border: none !important;
  padding: 0.875rem 1.75rem !important;
}

.laptop-screen:hover .platform-cta {
  transform: scale(1);
}

.platform-cta:hover {
  box-shadow: 0 15px 35px rgba(123, 234, 92, 0.5);
  background: var(--brand-green-hover) !important;
}

/* ==========================================================================
   Green Object & Footer Flow
   ========================================================================== */
.green-object-wrapper {
  position: relative;
  width: 100%;
  background: transparent;
  z-index: 1;
  margin-top: -20px; /* Seamless visual alignment */
}

.green-object-curve {
  position: relative;
  z-index: 2;
}

.green-object-content {
  background: #0F172A;
  padding: 0;
  position: relative;
  z-index: 2;
}

.green-features-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(245, 243, 238, 0.1);
}

@media (min-width: 600px) {
  .green-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .green-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

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

.green-feature-item svg {
  width: 24px;
  height: 24px;
  color: #B5E97E; /* brand green */
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.green-feature-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.green-feature-item p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.4;
}


/* Overrides to make site footer align perfectly inside the dark flow */
.footer.action-footer {
  background: var(--footer-bg) !important;
}

/* ==========================================================================
   Redesigned About Page (/about) Styles
   ========================================================================== */

/* ── About Hero Section ── */
.about-hero {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  padding: 9rem 1.5rem 6rem 1.5rem;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-hero-title {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #F8FAFC;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.about-hero-title span {
  background: linear-gradient(135deg, #818CF8, #22D3EE);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero-subtitle {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: #94A3B8;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}
.about-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.30) 30%, rgba(6, 182, 212, 0.30) 70%, transparent 100%);
}

/* ── Mission Section ── */
.about-mission {
  background: #FAF8F3;
  padding: 6rem 1.5rem;
}
.about-mission-container {
  max-width: 1100px;
  margin: 0 auto;
}
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .about-mission-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.about-mission-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.about-mission-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 12px;
  color: #6366F1;
  margin-bottom: 1.5rem;
}
.about-mission-icon-wrap svg {
  width: 28px;
  height: 28px;
}
.about-mission-card h3 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.about-mission-card p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* ── Company Story ── */
.about-story {
  background: #FFFFFF;
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}
.about-story-container {
  max-width: 800px;
  margin: 0 auto;
}
.about-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}
.about-section-title {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.about-section-subtitle {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.1rem;
  color: #64748B;
  line-height: 1.5;
}
/* Centered/Alternating Timeline Styles */
.about-timeline {
  position: relative;
  padding: 2rem 0;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(99, 102, 241, 0.15);
  transform: translateX(-50%);
}
.about-timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 4rem;
  clear: both;
}
.about-timeline-item:last-child {
  margin-bottom: 0;
}
.about-timeline-item:nth-child(odd) {
  float: left;
  padding-right: 3rem;
  text-align: right;
}
.about-timeline-item:nth-child(even) {
  float: right;
  padding-left: 3rem;
  text-align: left;
}
.about-timeline-dot {
  position: absolute;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #6366F1;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  z-index: 5;
  transition: all 0.3s ease;
}
.about-timeline-item:nth-child(odd) .about-timeline-dot {
  right: -8px;
  left: auto;
  transform: none;
}
.about-timeline-item:nth-child(even) .about-timeline-dot {
  left: -8px;
  right: auto;
  transform: none;
}
.about-timeline-item:hover .about-timeline-dot {
  background: #22D3EE;
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.3);
  transform: scale(1.1);
}
.about-timeline-year {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #6366F1;
  margin-bottom: 0.75rem;
  display: inline-block;
  background: rgba(99, 102, 241, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}
.about-timeline-item:nth-child(odd) .about-timeline-year {
  margin-left: auto;
}
.about-timeline-item:nth-child(even) .about-timeline-year {
  margin-right: auto;
}
.about-timeline-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-timeline-item:hover .about-timeline-card {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.about-timeline-item h4 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.about-timeline-item p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* Clearfix for floating items */
.about-timeline::after {
  content: '';
  display: block;
  clear: both;
}

/* Responsive view for centered timeline */
@media (max-width: 768px) {
  .about-timeline::before {
    left: 20px;
    transform: none;
  }
  .about-timeline-item {
    width: 100%;
    float: none !important;
    padding-left: 3rem !important;
    padding-right: 0 !important;
    text-align: left !important;
    margin-bottom: 3rem;
  }
  .about-timeline-dot {
    left: 12px !important;
    right: auto !important;
    top: 24px;
  }
  .about-timeline-card {
    padding: 1.75rem;
  }
}

/* ── Company Values ── */
.about-values {
  background: #FAF8F3;
  padding: 6rem 1.5rem;
}
.about-values-container {
  max-width: 1100px;
  margin: 0 auto;
}
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-value-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.about-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 12px;
  color: #06B6D4;
  margin-bottom: 1.25rem;
}
.about-value-icon svg {
  width: 24px;
  height: 24px;
}
.about-value-card h3 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.about-value-card p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.55;
}

/* ── Leadership Team ── */
.about-team {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.about-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.about-team-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-team .about-section-title {
  color: #F8FAFC;
}
.about-team .about-section-subtitle {
  color: #94A3B8;
}
.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (min-width: 640px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.about-team-member {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-team-member:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(99, 102, 241, 0.15);
}
.about-member-avatar-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #6366F1, #22D3EE);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.about-member-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #1E293B;
  display: block;
}
.about-member-name {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 0.25rem;
}
.about-member-role {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #38BDF8;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.about-member-bio {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}
.about-member-bio .bio-toggle-btn {
  background: transparent;
  border: none;
  color: #38BDF8;
  font-weight: 600;
  padding: 0;
  margin-top: 0.5rem;
  cursor: pointer;
  display: block;
  font-size: 0.85rem;
}
.about-member-bio .bio-toggle-btn:hover {
  color: #7DD3FC;
  text-decoration: underline;
}
.about-member-experience {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.about-member-tag {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}

/* ── Careers Section ── */
.about-careers {
  background: #FFFFFF;
  padding: 6rem 1.5rem;
}
.about-careers-container {
  max-width: 1100px;
  margin: 0 auto;
}
.about-careers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}
@media (min-width: 1024px) {
  .about-careers-grid {
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
  }
}
.about-careers-info h3 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1.5rem;
}
.about-careers-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-careers-benefits li {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.5;
}
.about-careers-benefits li .benefit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.1);
  color: #6366F1;
  border-radius: 8px;
  flex-shrink: 0;
}
.about-careers-benefits li .benefit-icon-wrap svg {
  width: 18px;
  height: 18px;
}
.about-careers-benefits li .benefit-text h4 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.25rem;
}
.about-careers-benefits li .benefit-text p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  color: #64748B;
  margin: 0;
}
.about-no-roles-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.about-no-roles-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(100, 116, 139, 0.06);
  border: 1px solid rgba(100, 116, 139, 0.12);
  color: #64748B;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.about-no-roles-icon svg {
  width: 24px;
  height: 24px;
}
.about-no-roles-card h4 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
}
.about-no-roles-card p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.about-speculative-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.about-speculative-btn:hover {
  background: #1E293B;
  transform: translateY(-1px);
}
.about-speculative-btn svg {
  width: 16px;
  height: 16px;
}

/* ── About CTA Bar ── */
.about-cta {
  position: relative;
  padding: 6rem 1.5rem;
  background: #FAF8F3;
  overflow: hidden;
}
.about-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-cta-card {
  background: linear-gradient(160deg, #1E293B 0%, #0F172A 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 30px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.about-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.about-cta-card h2 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-cta-card p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.1rem;
  color: #94A3B8;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #B5E97E;
  color: #014A36;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 99px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(181, 233, 126, 0.2);
}
.about-cta-btn:hover {
  background: #c7f296;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181, 233, 126, 0.35);
}
